.cover-page {
    background-image: url('../img/bg.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    /* Optional: Add an overlay to make text more readable */
    position: relative;
}
.cover-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
.cover-content {
    position: relative; /* Brings content above the overlay */
    z-index: 1;
}
.centered-table {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Centers content within cells */
    border-collapse: collapse; /* Ensures no visible borders */
}

.centered-table td {
    border: none; /* Explicitly removes borders from cells */
    padding: 8px; /* Adds some spacing for readability */
}

.div-img {
    width: 100%;
    max-width: 256px;
}
