.links-underline a {
    text-decoration: underline;
}

.top-100 {
    margin-top: 100px;
}

.left-div,
.right-div {
    width: 50%;
    margin-top: auto;
    margin-bottom: auto;
}

.margin-right-1 {
    margin-right: var(--col-1);
}


/* FAQ STYLES  */

.accordion {
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq--section {
    max-width: 100%;
    margin: auto;
    gap: 1rem;
}

.question input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.question__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.question input:checked~.question__content {
    max-height: 20rem;
}

.question__label {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    padding: 1rem 0;
    color: black;
    position: relative;
    transition: background-color 0.3s ease;
    /* Smooth background color transition */
}


/*   background: url('/images/shevron-down.svg') no-repeat center center; */

.question__label::after {
    content: "\276F";
    width: 2em;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid black;
    transform: rotate(90deg);
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.question input:checked+.question__label::after {
    transform: rotate(-90deg);
    background: black;
    color: white;
}

.question__content p {
    padding: 1rem 0;
    margin: 0;
}

@keyframes bounce {
    0%,
    100% {
        transform: rotate(90deg) translate(0);
    }
    50% {
        transform: rotate(90deg) translate(0.5rem);
    }
}


/* END FAQ STYLES  */

.records-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.record {
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* height: 421px; */
    /* Fixed height for each record */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.record img {
    width: 200px;
    height: 300px;
    /* Fixed aspect ratio for the image */
    margin-bottom: 30px;
}

.record strong {
    margin-bottom: 10px;
}

.record p {
    font-size: 18px;
    padding: 0 20px;
}

.aspect-ratio-wrapper2 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-div img {
    max-height: 600px;
}


/* FACTS */

.facts-container {
    max-width: 1200px;
    margin: auto;
    flex-direction: column !important;
}

.facts-container h2 {
    /* width: 50%; */
    padding-right: 50%;
}

.facts-container ol {
    list-style: none;
    counter-reset: section;
    padding: 0;
    margin: 0;
}

.facts-container ol li {
    counter-increment: section;
    width: 50%;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
    padding-right: 10px;
    box-sizing: border-box;
}

.facts-container ol li::before {
    content: counter(section);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: black;
    color: white;
    text-align: center;
    line-height: 30px;
    position: absolute;
    left: 0;
    top: 0;
}


/* Odd fact items */

.facts-container ol li:nth-child(odd) {
    clear: both;
    float: left;
}


/* Even fact items */

.facts-container ol li:nth-child(even) {
    clear: both;
    float: right;
}


/* END FACTS */

@media (max-width: 1024px) {
    .question__label {
        position: relative;
        padding-right: 40px;
    }
    .question__label::after {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0%, -50%) rotate(90deg);
    }
    .question__content p {
        padding: 1rem 40px 0 0;
    }
    .records-section {
        grid-template-columns: 1fr;
    }
    /* MOBILE FACTS */
    .facts-container ol li {
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
        float: none;
        clear: both;
    }
    .facts-container ol li::before {
        left: 0;
        right: auto;
        top: 10px;
    }
    .left-div img {
        max-height: 300px;
    }
    /* END MOBILE FACTS */
}