.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.page-hero .section-tag {
    display: inline-block;
    background: rgba(255, 107, 157, 0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.page-hero h1 .highlight {
    background: linear-gradient(135deg, #ff6b9d, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 0 80px;
    background: var(--bg);
    min-height: 50vh;
}

.page-content .container {
    max-width: 800px;
}

.page-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

.page-text h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 107, 157, 0.3);
}

.page-text h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 12px;
}

.page-text p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.page-text ul, .page-text ol {
    margin: 16px 0;
    padding-left: 24px;
}

.page-text li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.page-text a {
    color: var(--accent);
    text-decoration: underline;
}

.page-loading {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* FAQ specific */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #2D2D3A;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 157, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.05rem;
    gap: 16px;
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.faq-empty i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 40px;
    }
    .page-content {
        padding: 40px 0 60px;
    }
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
}
