/*-- -------------------------- -->
<---             FAQ            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #faq-section {
        padding: var(--sectionPadding);
        background-color: #f8f9fb;
        /* Faint diamond pattern */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Crect x='20' y='2' width='11' height='11' rx='0' transform='rotate(45 20 7.5)' fill='none' stroke='%23171e26' stroke-width='0.6' opacity='0.12'/%3E%3C/svg%3E");
        background-repeat: repeat;
        background-size: 40px 40px;
    }
    #faq-section .cs-container {
        width: 100%;
        max-width: 50rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    #faq-section .cs-title {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(1.875rem, 4vw, 3rem);
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.15em;
        color: #171e26;
        margin: 0;
    }
    #faq-section .cs-faq-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #faq-section .cs-faq-item {
        list-style: none;
        width: 100%;
    }
    #faq-section .cs-faq-button {
        width: 100%;
        background: #fff;
        border: 2px solid #171e26;
        border-radius: 0.5rem;
        padding: 1.125rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        cursor: pointer;
        text-align: left;
        transition: border-color 0.3s, background-color 0.3s;
    }
    #faq-section .cs-faq-button:hover {
        border-color: var(--primary);
    }
    #faq-section .cs-faq-button.cs-open {
        border-color: var(--primary);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
    }
    #faq-section .cs-faq-icon {
        width: 1.25rem;
        height: 1.25rem;
        flex-shrink: 0;
        stroke: #171e26;
        stroke-width: 2.5;
        transition: transform 0.3s;
    }
    #faq-section .cs-faq-button.cs-open .cs-faq-icon {
        transform: rotate(180deg);
        stroke: var(--primary);
    }
    #faq-section .cs-faq-question {
        font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
        font-weight: 700;
        color: #171e26;
        line-height: 1.4em;
        margin: 0;
    }
    #faq-section .cs-faq-answer {
        display: none;
        background: #fff;
        border: 2px solid var(--primary);
        border-top: none;
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
        padding: 1.25rem 1.5rem 1.5rem;
    }
    #faq-section .cs-faq-answer.cs-open {
        display: block;
    }
    #faq-section .cs-faq-answer p {
        font-size: 0.9375rem;
        line-height: 1.75em;
        color: var(--bodyTextColor);
        margin: 0;
    }
}
