.faq-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f2f5 0%, #ffffff 40%, #e8ecf4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-y: scroll;
}

.faq-container {
    width: 100%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.faq-header {
    text-align: center;
    margin-bottom: 24px;
}

.faq-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7C4DFF, #FF6B9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px;
}

.faq-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    margin: 0;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list details {
    border-bottom: 1px solid var(--glass-border);
}

.faq-list details:last-child {
    border-bottom: none;
}

.faq-list summary {
    padding: 16px 32px 16px 16px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    font-size: 18px;
    line-height: 1.4;
    transition: color 0.2s;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::marker {
    display: none;
    content: '';
}

.faq-list summary::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
    transform: translateY(-40%) rotate(-135deg);
}

.faq-list summary:hover {
    color: var(--accent-purple);
}

.faq-list details .faq-answer {
    padding: 0 16px 16px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.faq-contact {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 24px 0 0;
    line-height: 1.5;
}

.faq-contact a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
}

.faq-contact a:hover {
    text-decoration: underline;
}

.faq-footer {
    text-align: center;
    margin-top: 28px;
}

.faq-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border: none;
    border-radius: 14px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.25);
}

.faq-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 77, 255, 0.35);
}

@media (max-width: 640px) {
    .faq-container {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .faq-title {
        font-size: 1.4rem;
    }
}