.nf-faq-page {
    padding-bottom: 80px;
    background-color: #fcfcfc;
}

.nf-faq-header {
    background: var(
        --header-gradient,
        linear-gradient(135deg, #000000 0%, #333333 100%)
    );
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nf-faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c5a059, #e2c27d, #c5a059);
}

.nf-faq-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff !important;
}

.nf-faq-divider {
    width: 80px;
    height: 4px;
    background: #c5a059;
    margin: 25px auto 0;
    border-radius: 2px;
}

.nf-faq-container {
    max-width: 900px !important;
    margin: 0 auto;
    padding: 0 20px;
}

.nf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nf-faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nf-faq-item.is-open {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 89, 0.2);
}

.nf-faq-question {
    padding: 24px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.nf-faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.4;
    padding-right: 20px;
}

.nf-faq-icon {
    width: 32px;
    height: 32px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nf-faq-item.is-open .nf-faq-icon {
    background: #c5a059;
    color: #fff;
    transform: rotate(180deg);
}

.nf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.nf-faq-item.is-open .nf-faq-answer {
    max-height: 1000px; /* Large enough to fit content */
    opacity: 1;
}

.nf-faq-answer-inner {
    padding: 0 30px 30px;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

.nf-faq-answer-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .nf-faq-header {
        padding: 70px 0 50px;
    }
    .nf-faq-question {
        padding: 20px 24px;
    }
    .nf-faq-question h3 {
        font-size: 1.1rem;
    }
    .nf-faq-answer-inner {
        padding: 0 24px 24px;
        font-size: 1rem;
    }
}
