/* FAQ Section Styling */
.faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* font-family: Arial, sans-serif; */
}

/* FAQ Title */
.faq-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    /* color: #333; */
    text-align: center;
    border-bottom: 3px solid #4CAF50;
    /* display: inline-block; */
    padding-bottom: 8px;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 10px;
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
    background: white;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    transition: background 0.3s;
    position: relative;
}

/* Add + Icon */
.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

/* Active (open) Question */
.faq-question.active {
    background: #eaffea;
}

/* Change + to - when active */
.faq-question.active::after {
    content: '–';
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: white;
    padding: 0 15px;
    border-left: 4px solid #4CAF50;
    border-radius: 0 0 8px 8px;
}

/* Open Answer */
.faq-answer.open {
    padding: 15px;
}

/* FAQ Answer Text */
.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 600px) {
    .faq-section {
        padding: 15px;
    }

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

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