.faq-section {
    color: #222;
    padding: 100px 20px;
    background: #fff;
}

.container {
    max-width: 900px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: inline-block;
    color: #6d6d6d;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 650px;
    margin: auto;
    color: #666;
    line-height: 1.7;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: 0.35s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 30px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}

.icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 22px;
    flex-shrink: 0;
}

.faq-item.active .icon {
    background: #111;
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 28px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }

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

    .faq-answer p {
        padding: 0 20px 20px;
    }
}