body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.description {
    padding: 20px;
    background-color: #1c1c1c;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
    width: 80%;
}

.description h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.description p {
    font-size: 1.2em;
    line-height: 1.5em;
}

.cta-container {
    /* text-align: center; */
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: #0036AE;
    background: #DBA539;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 179, 0, 0.3);
    margin-top: 20px;
    color: #ffffff;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
    border-radius: 50%;
    transform: scale(0);
}

.cta-button:hover::before {
    transform: scale(1);
}

.table {
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

table,
td,
th {
    border: 1px solid #ffffff;
}

td,
th {
    padding: 10px;
}

th {
    background-color: #7accee !important;
}

.anchor__menu li {
    margin-bottom: 10px;
}

.anchor__menu a {
    color: #ffffff;
    text-decoration: none;
}

.anchor__menu a:hover {
    text-decoration: underline;
}

.img-cov {
    width: 200px;
    height: 200px;
}

.img-cov img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.cards{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cards p{
    width: 24%;
}

.cards p img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:768px) {
    .img-cov {
        float: none !important;
        margin: 20px auto !important;
    }

    .cards p {
        width: 100%;
    }
}