.faq {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background-color: #f5f5f0;
    color: #333;
}

.faq .wrapper {
    max-width: 1000px;
}

.faq-section {
    padding: 1.5rem 15px;
}

.faq-section h2 {
    color: var(--dark-green);
    font-size: 2rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--light-gold);
    padding-bottom: 0.5rem;
    font-weight: 400;
    text-align: left;
}

.faq-section h2::after {
    width: 100%;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(10, 59, 28, 0.2);
    padding-bottom: 1rem;
}

.faq-question {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 0.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--light-gold);
}

.faq-question.active:after {
    content: '−';
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.6;
    display: none;
    padding-left: 0.5rem;
}

.faq-answer.active {
    display: block;
}

.contact-box {
    background-color: var(--dark-green);
    color: var(--text-light);
    padding: 4rem 0 7rem;
    border-radius: 5px;
    text-align: center;
}

.contact-box h2 {
    color: var(--light-gold);
    margin: 0 0 1.5rem;
    font-weight: 400;
}

.contact-box p {
    margin-bottom: 1.5rem;
}

.contact-box a {
    margin-top: 1rem;
}

.contact-box p a {
    text-decoration: none;
    color: #949494;
}

.contact-box p a:hover {
    text-decoration: underline;
}

.search-container {
    margin-bottom: 2rem;
}

.search-box {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid var(--dark-green);
    border-radius: 5px;
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2.5rem;
    }
    
    .faq-hero p {
        font-size: 1.1rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 1rem;
    }
}