.faq-hero {
    padding: 64px 0 32px;
}

.faq-hero-box {
    background: linear-gradient(135deg,#e0f5f9,#fff);
    border: 1px solid var(--dr-border);
    border-radius: 32px;
    padding: 38px;
}

.faq-hero-box span {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: 999px;
    padding: 7px 16px;
    font-weight: 800;
    color: var(--dr-primary-dark);
    margin-bottom: 12px;
}

.faq-hero-box h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 14px;
}

.faq-hero-box p {
    color: var(--dr-muted);
    margin: 0;
    line-height: 2;
}

.faq-section {
    padding: 0 0 80px;
}

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

.faq-item {
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: 22px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    color: var(--dr-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .3s;
    padding: 0 22px;
    line-height: 2.2;
    color: var(--dr-text);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 22px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}
