/* ============================================
   LEGAL PAGES STYLES (GDPR & TERMS)
   ============================================ */

.legal-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(3, 114, 188, 0.7), rgba(3, 114, 188, 0.6)), url('images/services/care.jpg') center/cover no-repeat;
    position: relative;
}

.legal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 17, 34, 0.45) 0%, rgba(0, 17, 34, 0.25) 100%);
    z-index: 1;
}

.legal-hero .page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.legal-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-content {
    padding: 80px 0 120px;
    background: var(--bg-white);
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-list {
    margin: 0 0 20px 20px;
    padding-left: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-callout {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 22px 28px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-lighter);
    margin-top: 32px;
    display: block;
}

@media (max-width: 768px) {
    .legal-hero {
        min-height: 45vh;
        padding-top: 140px;
    }

    .legal-content {
        padding: 60px 0 90px;
    }
}

