/* Legal Pages Styling */
.privacy-hero, .terms-hero, .thanks-hero {
    background: linear-gradient(135deg, var(--card) 0%, #fff7ed 100%);
    text-align: center;
    padding: 8rem 2rem;
}

.privacy-hero h1, .terms-hero h1, .thanks-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.privacy-hero p, .terms-hero p, .thanks-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.legal-text ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: var(--primary);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-hero h1, .terms-hero h1, .thanks-hero h1 {
        font-size: 2.5rem;
    }
}