/* Legal pages: Privacy Policy & Terms & Conditions – brand-aligned banner & CTA */

.legal-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a0525 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=2000');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.legal-hero .container {
    position: relative;
    z-index: 2;
}

.legal-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--white);
}

.legal-hero .breadcrumb {
    font-size: 18px;
    opacity: 0.9;
}

.legal-hero .breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.legal-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 70px 0 90px;
    background: #fff;
}

.legal-content .container {
    max-width: 960px;
    margin: 0 auto;
}

.legal-content .last-updated {
    font-size: 13px;
    color: #666;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.legal-content .intro {
    font-size: 16px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(59, 13, 64, 0.15);
}

.legal-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #2d3748;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 0 0 20px 24px;
    padding: 0;
}

.legal-content ul li {
    font-size: 15px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-content .highlight-box {
    background: linear-gradient(135deg, #f8f5fc 0%, #fef9f5 100%);
    border-left: 4px solid var(--accent-color);
    padding: 24px 28px;
    margin: 28px 0;
    border-radius: 0 12px 12px 0;
}

.legal-content .highlight-box p {
    margin-bottom: 0;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-cta {
    text-align: center;
    padding: 40px 0 20px;
}

.legal-cta .btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(240, 124, 36, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(240, 124, 36, 0.45);
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

@media (max-width: 768px) {
    .legal-hero {
        height: auto;
        padding: 60px 20px 50px;
    }
    .legal-hero h1 {
        font-size: 36px;
    }
    .legal-hero .breadcrumb {
        font-size: 15px;
    }
    .legal-content {
        padding: 50px 0 60px;
    }
    .legal-content h2 {
        font-size: 20px;
        margin-top: 36px;
    }
}
