/* FAQ Section Styles */
.cite-faq-section {
    background-color: var(--pure-white);
}

.cite-faq-section .cite-faq-headline {
    font-family: var(--font-heading);
    font-size: 50px;
    color: var(--cite-dark);
    text-align: left;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.cite-faq-section .cite-faq-accordion {
    border: none;
}

.cite-faq-section .cite-faq-item {
    border: none;
    margin-bottom: 0;
    border-bottom: 2px solid var(--cite-lime);
    transition: border-bottom-color 0.3s ease;
}

.cite-faq-section .cite-faq-item:hover {
    border-bottom-color: var(--cite-blue);
}



.cite-faq-section .cite-faq-header {
    background: none;
    border: none;
    padding: 0;
}

.cite-faq-section .cite-faq-button {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0 .75rem;
    color: var(--cite-dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    background: none;
    border: none;
    position: relative;
    transition: color 0.3s ease;
}

.cite-faq-section .cite-faq-button:hover,
.cite-faq-section .cite-faq-button:focus {
    color: var(--cite-dark);
    text-decoration: none;
    box-shadow: none;
}

.cite-faq-section .cite-faq-button:not(.collapsed) {
    color: var(--cite-dark);
    background: none;
    box-shadow: none;
}

.cite-faq-section .cite-faq-chevron {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.cite-faq-section .cite-faq-chevron-icon {
    width: 16px;
    height: 16px;
    /* filter: brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(1000%) hue-rotate(60deg) brightness(1) contrast(1); */
    transition: transform 0.3s ease;
}

.cite-faq-section .cite-faq-button:not(.collapsed) .cite-faq-chevron-icon {
    transform: rotate(90deg);
}

.cite-faq-section .cite-faq-body {
    padding: 0 0 .75rem 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

.cite-faq-section .cite-faq-read-more {
    text-align: left;
}

.cite-faq-section .cite-faq-read-more-btn {
    color: var(--faq-button-text-color, #ffffff);
    font-weight: 600;
    font-size: 17px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    background: var(--faq-button-color, var(--cite-blue));
    overflow: hidden;
    border: none;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    text-decoration: none;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.cite-faq-section .cite-faq-read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, .3) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.75s;
    opacity: 0;
}

.cite-faq-section .cite-faq-read-more-btn:hover::before {
    animation: shine 0.75s;
    opacity: 1;
}

.cite-faq-section .cite-faq-read-more-btn:hover {
    color: var(--faq-button-text-color, #ffffff);
    background-color: var(--faq-button-color, var(--cite-blue));
    transform: translateY(-2px);
    text-decoration: underline;
}

/* FAQ Responsive adjustments */
@media (max-width: 768px) {
    .cite-faq-section .cite-faq-headline {
        font-size: 36px;
        margin-bottom: 2rem;
    }
    
    .cite-faq-section .cite-faq-button {
        font-size: 16px;
        padding: 1.25rem 0;
    }
    
    .cite-faq-section .cite-faq-body {
        font-size: 15px;
        padding: 0 0 1.25rem 0;
    }
}

@media (max-width: 480px) {
    .cite-faq-section .cite-faq-headline {
        font-size: 28px;
    }
    
    .cite-faq-section .cite-faq-button {
        font-size: 15px;
        padding: 1rem 0;
    }
}