﻿/* FAQ Section Styling */
.faq-section {
    padding: 80px 20px;
    background: #fdfdfd;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.faq-info .faq-subtitle {
    font-size: 1.1rem;
    color: #27ae60;
    margin-bottom: 10px;
}

.faq-info .faq-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
}

.faq-info .faq-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.faq-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}

    .faq-image img:hover {
        transform: scale(1.05);
    }

/* Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
}

.faq-question {
    width: 100%;
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    position: relative;
}

    .faq-question::after {
        content: "+";
        position: absolute;
        right: 20px;
        font-size: 1.2rem;
        transition: transform 0.3s;
    }

    .faq-question.active {
        background: #1e8449;
    }

        .faq-question.active::after {
            content: "-";
            transform: rotate(180deg);
        }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    padding: 0 18px;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #444;
        padding: 15px 0;
    }

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 18px 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}
