/* FAQ Page Styles */
.faq-page-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Hero Section */
.faq-hero-section {
    background-color: #f8f9fa;
    padding: 90px 0 40px 0;
    text-align: center;
}

.faq-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Content Section */
.faq-content-section {
    padding: 40px 0;
    background-color: #fff;
}

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

/* FAQ Introduction */
.faq-intro {
    margin-bottom: 40px;
    text-align: center;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #047727;
}

.faq-intro h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.faq-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Sections */
.faq-section {
    margin-bottom: 50px;
}

.faq-section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.faq-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #047727;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #047727;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-item.active .faq-question {
    background-color: #047727;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-question .faq-toggle svg path {
    stroke: white;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    flex-grow: 1;
    line-height: 1.4;
}

.faq-toggle {
    margin-left: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
    background-color: white;
}

.faq-answer p {
    margin: 0 0 15px 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

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

.faq-answer a {
    color: #047727;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* FAQ CTA Section */
.faq-cta-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.faq-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-cta-container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.faq-cta-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.faq-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.faq-cta-button.primary {
    background-color: #047727;
    color: white;
    box-shadow: 0 2px 10px rgba(4, 119, 39, 0.3);
}

.faq-cta-button.primary:hover {
    background-color: #035a1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(4, 119, 39, 0.4);
    color: white;
    text-decoration: none;
}

.faq-cta-button.secondary {
    background-color: white;
    color: #047727;
    border: 2px solid #047727;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-cta-button.secondary:hover {
    background-color: #047727;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(4, 119, 39, 0.3);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .faq-hero-subtitle {
        font-size: 1rem;
    }
    
    .faq-intro {
        padding: 30px 20px;
    }
    
    .faq-intro h2 {
        font-size: 1.6rem;
    }
    
    .faq-section-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        margin-left: 15px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-cta-container h2 {
        font-size: 2rem;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-content-section,
    .faq-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .faq-hero-section h1 {
        font-size: 2rem;
    }
    
    .faq-intro h2 {
        font-size: 1.4rem;
    }
    
    .faq-section-title {
        font-size: 1.6rem;
    }
    
    .faq-question {
        padding: 16px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-cta-container h2 {
        font-size: 1.8rem;
    }
    
    .faq-cta-container p {
        font-size: 1rem;
    }
}
