.new-v1-faq-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .new-v1-faq-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 48px;
    }
}

.new-v1-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .new-v1-faq-list {
        max-width: 800px;
        margin: 0 auto;
        gap: 16px;
    }
}

.new-v1-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    overflow: hidden;
}

.new-v1-faq-question {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .new-v1-faq-question {
        padding: 20px 24px;
        font-size: 15px;
    }
}

.new-v1-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 12px;
    color: var(--muted-foreground);
    font-size: 12px;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

@media (min-width: 768px) {
    .new-v1-faq-answer {
        padding: 0 24px;
        font-size: 14px;
    }
}

.new-v1-faq-item.open .new-v1-faq-answer {
    max-height: 500px;
    padding: 0 12px 12px 12px;
}

@media (min-width: 768px) {
    .new-v1-faq-item.open .new-v1-faq-answer {
        padding: 0 24px 24px;
    }
}

.new-v1-faq-item.open .new-v1-faq-question {
    color: var(--primary);
}

.new-v1-faq-question iconify-icon {
    transition: transform 0.3s ease;
}

.new-v1-faq-item.open .new-v1-faq-question iconify-icon {
    transform: rotate(180deg);
}
