/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    background: var(--mint-cream);
}

.faq-section .faq-group {
    margin-bottom: 2.5rem;
}

.faq-section .faq-group-title {
    color: var(--teal-dark);
    margin-bottom: 1.5rem;
    /*font-size: 1.8rem; */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-section details {
    background: var(--white);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(10,30,10,0.05);
    transition: box-shadow 0.3s ease;
}

.faq-section details[open] {
    box-shadow: 0 4px 12px rgba(10,30,10,0.08);
}

.faq-section summary {
    padding: 1.25rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: var(--green-deep);
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 16pt;
}

.faq-section summary::-webkit-details-marker {
    display: none;
}

.faq-section summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--aqua);
    transition: transform 0.3s ease;
}

.faq-section details[open] summary::after {
    transform: rotate(45deg);
}

.faq-section .faq-content {
    padding: 0 1.25rem 1.25rem;
    color: var(--black);
    line-height: 1.6;
}

.faq-section .faq-content p {
    margin-bottom: 1rem;
    font-size: 14pt;
}

.faq-section .faq-content p:last-child {
    margin-bottom: 0;
}

.faq-section .contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--aqua-pale), var(--mint-frost));
    border-radius: 0.5rem;
}

/* Hover effects */
.faq-section details:hover {
    box-shadow: 0 4px 12px rgba(10,30,10,0.08);
}

.faq-section summary:hover {
    color: var(--aqua);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .faq-section summary::after {
        transition: none;
    }
}