body {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background: linear-gradient(120deg, #f3f9e8, #e9f5db);
}

.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1524412526234-625d21a2c1a1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.section-title {
    font-size: 2.25rem;
    /* 36px */
    font-weight: 800;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.875rem;
        /* 30px */
    }
}

.faq-item .faq-answer {
    display: none;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .icon-plus {
    transform: rotate(45deg);
}