/*=========================
          FAQ
=========================*/

.faq-section {
    padding: clamp(60px, 10vw, 120px) 0;
    background: var(--cream);
}

.faq-container {
    max-width: 900px;
    margin: clamp(40px, 6vw, 70px) auto 0;
    padding: 0 clamp(15px, 4vw, 20px);
}

.faq-item {
    background: #fff;
    border-radius: clamp(14px, 3vw, 20px);
    margin-bottom: clamp(12px, 2.5vw, 20px);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, .04);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(18px, 3vw, 28px) clamp(20px, 4vw, 30px);
    background: none;
    border: none;
    cursor: pointer;
    font-size: clamp(0.95rem, 1.8vw, 1rem);
    font-weight: 600;
    text-align: left;
    color: var(--black, #111);
}

.faq-question i {
    font-style: normal;
    color: var(--primary);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    transition: .35s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 clamp(20px, 4vw, 30px) clamp(20px, 4vw, 30px);
    color: var(--text-light);
    line-height: 1.85;
    font-size: clamp(0.9rem, 1.7vw, 1rem);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Safe expanded limit for longer answers */
}

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