/* Legal pages (terms, privacy) */
.page-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, rgba(255,107,53,0.12) 0%, rgba(255,107,53,0) 60%);
}

.page-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.page-subtitle {
    color: #ccc;
    max-width: 640px;
}

.page-content {
    padding: 40px 0 80px;
}

.content-card {
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 32px;
    color: #eaeaea;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.content-card h2 {
    color: #ff6b35;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-card p {
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-card a {
    color: #ff6b35;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    .content-card {
        padding: 24px;
    }
}

