.faqs {
    padding: 82px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.faq-heading {
    text-align: center;
    margin-bottom: 38px;
}

.faq-heading h2 {
    margin: 8px 0 12px;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    color: #102033;
    line-height: 1.1;
}

.faq-heading p {
    max-width: 660px;
    margin: 0 auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(4, 111, 94, 0.12);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    width: 100%;
    max-width: 880px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.faq-item.active,
.faq-item:hover {
    border-color: rgba(4, 111, 94, 0.26);
    box-shadow: 0 22px 56px rgba(4, 111, 94, 0.11);
    transform: translateY(-1px);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    color: #102033;
    gap: 18px;
}

.faq-question:focus-visible {
    outline: 3px solid rgba(4, 111, 94, 0.18);
    outline-offset: -3px;
}

.faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 111, 94, 0.1);
    color: #046F5E;
    font-size: 14px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.3s ease;
    padding: 0 26px;
    opacity: 0;
}

.faq-answer p,
.faq-answer div {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    font-weight: 600;
    margin: 0;
    padding-bottom: 22px;
}

.faq-item.active .faq-answer {
    max-height: 520px;
    padding: 0 26px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #046F5E;
    color: #ffffff;
}

@media (max-width: 768px) {
    .faqs {
        padding: 60px 0;
    }

    .faq-heading h2 {
        font-size: 30px;
    }

    .faq-item {
        max-width: 100%;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px;
    }

    .faq-answer p,
    .faq-answer div {
        font-size: 15px;
        padding-bottom: 20px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}
