/* FAQ Page Styles */

.page-hero {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.95), rgba(21, 138, 63, 0.95)),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600') center/cover;
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green);
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-green);
    font-size: 1.25rem;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-answer ul {
    margin-top: -0.5rem;
    padding-left: 3rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-contact {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 4rem;
}

.faq-contact h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-contact p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p, .faq-answer ul {
        padding: 0 1rem 1rem;
    }
}
