.home__page {
    /* font-size: 18px; */
    font-family: "DINPro", sans-serif;
    font-weight: 400;
    font-size: 1rem; /* 18px base */
    line-height: 1.5;
}

.home__header {
    position: absolute;
    z-index: 1;
    width: 100%;
    padding: 2rem 0;
}

.home__top__sticky__nav {
    position: fixed;
    z-index: 9;
    width: 100%;
    background: white;
}

.home__logo__wrapper {
    padding: 2rem 0;
}

.home__logo__wrapper .nav__logo__gbc {
    max-height: 40px;
    width: auto;
}

.home__logo__wrapper .nav__logo__federal {
    max-width: 180px;
}

.home__hero__section {
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 800px;
}

.home__side__socials {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    gap: 5px;
}

.home__side__socials .social__icon {
    background-color: rgb(155, 112, 44, 0.7);
    width: 40px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home__hero__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.home__hero__content__wrapper__row {
    margin-top: 13rem;
}

.home__hero__section .hero__title {
    font-size: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.home__hero__section .hero__notice {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    /* letter-spacing: -0.9px; */
    line-height: 1.2;
}

.home__hero__content__wrapper {
    margin-bottom: 2rem;
}
/* .home__hero__section video {
    width: 100%;
    height: auto;
    object-fit: cover;
} */

.btn-home-cta {
    display: flex;
    gap: 5rem;
    padding: 1rem;
    text-transform: uppercase;
    align-items: center;
}

.about__section {
    background-color: #f7fcfd;
}
.about__section__wrapper {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 2.5rem;
}

.about__title {
    font-size: 2.5rem;
    letter-spacing: -0.9px;
    color: #2c8f9c;
    margin: 0;
    text-transform: uppercase;
    font-family: "DINPro", sans-serif !important;
    font-weight: 400;
    /* margin-bottom: 20px; */
}

.stat__box {
    /* border-top: 1px solid #e0e0e0; */
}
.stat__box .stat__box__image {
    width: 88px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.commitments__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.commitments__items .commitment__item {
    display: flex;
    padding: 1rem;
    background: #e7f6f9;
    color: #2c8f9c;
    gap: 2rem;
}

.commitments__items .commitment__item .commitment__item__icon {
    height: 40px;
    width: auto;
}

.commitments__items .commitment__item .commitment__item__title {
    margin: 0;
    font-size: 0.8rem;
}

.faqs__section {
    margin: 4rem 0;
    /* background-color: #f7fcfd;
    padding: 60px 0; */
}

.faqs__title {
    max-width: 36rem;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: -0.9px;
    font-size: 2rem;
    /* margin-top: 4rem; */
    margin-bottom: 2.5rem;
}

.faqs__section .accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faqs__section .accordion-item {
    /* margin-bottom: 24px; */
    border: 0;
    border: 1px solid #f8f5f1;
}

.faqs__section .accordion-item:has(.accordion-button:not(.collapsed)) {
    border: 1px solid #9b702c;
}
.faqs__section .accordion-button {
    padding: 2.5rem 3rem;
    background-color: transparent;
    font-weight: 400;
    letter-spacing: -0.9px;
    font-size: 1.5rem;
    color: #9b702c;
    text-transform: uppercase;
    box-shadow: none;
    position: relative;
}

.faqs__section .accordion-button::after {
    content: "";
    background-image: url("/images/arrow-accordion.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faqs__section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}
.faqs__section .accordion-button:focus {
    box-shadow: none;
    outline: none; /* For older browsers or specific cases */
    /* border-color: rgba(0, 0, 0, 0.125); */
}

.faqs__section .accordion-button.collapsed {
    background-color: #f8f5f1;
}

.faqs__section .accordion-body {
    /* padding: 48px; */
    padding: 3rem;
    padding-top: 2rem;
}

.faqs__section .accordion__body__item img {
    width: 2.5rem;
    aspect-ratio: 1 / 1;
}

.faqs__section .accordion-collapse .accordion-body {
    opacity: 1;
    /* transform: translateY(20px); */
    /* transition: opacity 0.3s ease; */
}

.faqs__section .accordion-collapse.show .accordion-body {
    /* opacity: 1; */
    /* transform: translateY(0); */
}

.faqs__section .accordion__body__item {
    padding: 1.5rem;
    background-color: #f4f1eb;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.faqs__section .accordion__body__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer__bottom {
    border-top: 1px solid;
    border-color: rgba(51, 63, 70, 0.1);
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    color: #565f5e;
    font-size: 0.9rem;
}

.footer__links a {
    color: #8a8d8f;
    text-decoration: none;
}
.footer__links a:hover {
    text-decoration: underline;
}

.footer__logo {
    width: 22rem;
    height: auto;
    margin: 2rem 0;
}

.cta__section {
    margin-top: 2.5rem;
    margin-bottom: 5rem;
}
.cta_link {
    color: var(--primary-color);
}

@media (max-width: 575.98px) {
    .home__page {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    .commitments__items {
        grid-template-columns: 1fr;
        margin-top: 2.5rem;
        gap: 0.5rem;
    }
    .commitments__items .commitment__item .commitment__item__title {
        font-size: 0.9rem;
    }
    .faqs__section {
        margin: 2.5rem 0;
    }
    .faqs__section .accordion-button {
        padding: 1.5rem 1rem;
        font-size: 1.2rem;
    }
    .faqs__section .accordion {
        gap: 0.5rem;
    }

    .footer__bottom {
        padding-bottom: 2rem;
    }

    .footer__copyright {
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }
    .footer__links {
        justify-content: center !important;
    }
    .footer__logo {
        width: 15rem;
        margin: 1.5rem 0;
    }

    .cta__section {
        margin-bottom: 2.5rem;
        margin-top: 3rem;
    }

    .cta_link {
        justify-content: space-between;
        padding: 1rem;
    }
    .btn-home-cta {
        justify-content: space-between;
        width: 100%;
    }

    .cta_link__wrapper {
        margin-bottom: 1.5rem;
    }
    .home__hero__section .hero__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    .home__hero__section .hero__notice {
        font-size: 1.2rem;
    }

    .home__hero__section {
        min-height: 500px;
    }

    .home__logo__wrapper .nav__logo__gbc {
        max-height: 30px;
    }

    .home__logo__wrapper .nav__logo__federal {
        max-height: 35px;
    }

    /* .home__logo__wrapper img {
        width: 90%;
    } */

    .about__title {
        font-size: 1.5rem;
    }

    .faqs__title {
        max-width: 100%;

        font-size: 1.5rem;
        margin-bottom: 2rem;
        text-align: left;
    }

    .home__side__socials {
        right: 12px;
        top: unset;
        transform: translateY(-50%);
        z-index: 3;
        gap: 3px;
        bottom: 0%;
    }

    .home__side__socials .social__icon {
        width: 30px;
    }

    .stat__box .stat__box__image {
        width: 70px;
        object-fit: contain;
        aspect-ratio: 1 / 1;
    }
}

.footer__copyright {
    text-align: left;
}
