/* FAQ Page Styles */


/* FAQ Content Section */
.faq-content {
    padding: 2.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.faq-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4aa851;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4aa851;
    font-family: Montserrat, sans-serif;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    flex: 1;
    font-family: Montserrat, sans-serif;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4aa851;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question.collapsed .faq-icon {
    transform: rotate(0deg);
}

.faq-question:not(.collapsed) .faq-icon,
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    border-top: 1px solid #e0e0e0;
}

.faq-answer-content {
    padding: 1.5rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    background-color: #fafafa;
}

/* Contact Form Section */
.faq-contact-section {
    background-color: #f8f9fa;
    padding: 2.5rem 0;
    margin-top: 3rem;
}

.faq-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #4aa851;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
}

.faq-contact-form p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.faq-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.faq-contact-form .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #fff;
}

.faq-contact-form .form-group input:focus {
    outline: none;
    border-color: #4aa851;
    box-shadow: 0 0 0 0.2rem rgba(74, 168, 81, 0.25);
}

.faq-contact-form .btn-submit {
    width: 100%;
    padding: 0.75rem;
    background-color: #4aa851;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: Montserrat, sans-serif;
}

.faq-contact-form .btn-submit:hover {
    background-color: #3d8a42;
}

/* Accordion animation improvements */
.collapse {
    transition: height 0.35s ease;
}

.collapsing {
    transition: height 0.35s ease;
}


/* Responsive */
@media (max-width: 768px) {
    .hero {
        margin-top: 60px; /* Smaller offset for mobile navigation */
        padding: 2rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media all and (max-width: 768px) {
    .faq-hero {
        padding: 2rem 1.5rem;
        margin-top: 60px;
    }

    .faq-hero-title {
        font-size: 2rem;
    }

    .faq-hero-subtitle {
        font-size: 1.2rem;
    }

    .faq-content {
        padding: 2rem 1.5rem;
    }

    .faq-section-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

