.premium-faq-accordion {
    max-width: 720px;
    margin: 2rem auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #ffffff;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #1a202c;
    text-align: left;
    gap: 12px;
}

.faq-question:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: -2px;
    border-radius: 8px;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 25px;
    font-weight: 400;
    color: #f59e0b;
    line-height: 1;
    transition: transform 0.25s ease;
    display: inline-block;
}

.faq-item.faq-open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.faq-open .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 0 22px 18px;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}