﻿
.faq-section {
    background: linear-gradient(90deg, #6FC3B4, #D8D268, #F8C640, #E79129);
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}

.section-header p {
    color: #000;
}

/* ACCORDION */
.faq-container {
    max-width: 1000px;
    margin: auto;
}

.faq-card {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 18px 22px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 22px;
    color: #444;
}

    .faq-answer p {
        margin: 15px 0 20px;
    }

.faq-card.active .faq-answer {
    max-height: 200px;
}

