.faq-section {
    padding: 60px 0;
    background: #fff;
}

.faq-list {
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E0E5E7;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #37474F;
    gap: 15px;
}

.faq-question:hover {
    color: #37A03C;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] .faq-icon path {
    stroke: #37A03C;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 16px;
    line-height: 1.6;
    color: #69757B;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 0 20px;
}

.faq-answer p {
    margin: 0;
}


@media (max-width: 768px) {
    .faq-section { padding: 40px 0; }
    .faq-title { font-size: 24px; line-height: 31px; margin-bottom: 30px; }
    .faq-question { font-size: 16px; padding: 15px 0; }
    .faq-answer { font-size: 14px; }
}