#faqs-page {
    background-color: #002a60;

    #faqs-nav-link {
        color: var(--gold) !important;
    };

#latest-faqs {
    background-color: #002a60;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;

    .faq-item {
        margin: 20px 0 20px 0;
    };
    
    .expand {
        border: solid var(--white);
        display: inline-block;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        margin-left: 4px;
    };

    .item-question {
        background-color: var(--dark-blue);
        color: var(--white);
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 700;
        cursor: pointer;
        gap: 8px;
    };

    .item-answer {
        background-color: #fffaea;
        padding: 20px;
        color: var(--black);
        display: none;
    };

    .show-answer {
        .item-answer {
            display: block;
        }

        .expand {
            transform: rotate(-135deg);
            -webkit-transform: rotate(-135deg);
        }
    };

    @media screen and (min-width: 320px) {
        .faq-item {
            max-width: 100%;

            .item-question {
                font-size: 14px;
            };

            .item-answer {
                font-size: 14px;
            };

            .expand {
                border-width: 0 3px 3px 0;
                padding: 5px;
            };
        };
    };

    @media screen and (min-width: 767px) {
        .faq-item {
            .item-question {
                font-size: 16px;
            };

            .item-answer {
                font-size: 15px;
            };

        };

    };

    @media screen and (min-width: 1024px) {
        .faq-item {
            width: 900px;

            .item-question {
                font-size: 17px;
            };

            .item-answer {
                font-size: 16px;
            };

            .expand {
                border-width: 0 5px 5px 0;
                padding: 6px;
            };
        };
    };
};

};
