.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-head h2 {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.section-lead {
    text-align: center;
    color: #000;
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto 0;
    line-height: 1.6;
}

.faq-list {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item[open] {
    box-shadow: var(--shadow-lg);
}

.faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    list-style: none;
    font-size: 16px;
    line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--yellow-color);
    color: #070042;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    content: "−";
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    padding: 0 22px 20px;
    color: #000;
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0 0 8px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section-head h2 {
        font-size: 24px;
    }

    .section-lead {
        font-size: 18px;
    }
}