/* ============================================================
   AGLAEA LEGAL PAGES STYLES
   Privacy Policy & Terms of Service
   ============================================================ */

/* Hero Section */
.legal-hero {
    background: linear-gradient(180deg, var(--cream, #f5f0e8) 0%, #ffffff 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 112, 0.2);
}

.legal-eyebrow {
    font-size: 12px;
    color: #c9a870;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 24px 0;
}

.legal-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
}

.legal-updated {
    font-size: 14px;
    color: #6b6b6b;
    font-style: italic;
    margin: 0;
}

/* Content Section */
.legal-content {
    background: #ffffff;
    padding: 80px 0 120px;
}

.legal-body {
    max-width: 760px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 18px;
    color: #2a2a2a;
    line-height: 1.7;
    margin: 0 0 48px 0;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(201, 168, 112, 0.2);
    font-weight: 300;
}

.legal-body h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    color: #2a2a2a;
    line-height: 1.2;
    margin: 48px 0 16px 0;
}

.legal-body h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #2a2a2a;
    line-height: 1.3;
    margin: 32px 0 12px 0;
}

.legal-body p {
    font-size: 16px;
    color: #2a2a2a;
    line-height: 1.7;
    margin: 0 0 16px 0;
    font-weight: 300;
}

.legal-body ul {
    margin: 0 0 24px 0;
    padding-left: 0;
    list-style: none;
}

.legal-body ul li {
    font-size: 16px;
    color: #2a2a2a;
    line-height: 1.7;
    padding: 8px 0 8px 24px;
    position: relative;
    font-weight: 300;
}

.legal-body ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 8px;
    color: #c9a870;
    font-size: 14px;
}

.legal-body ul li strong {
    font-weight: 500;
    color: #2a2a2a;
}

.legal-body a {
    color: #c9a870;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 112, 0.4);
    transition: border-color 0.2s ease;
}

.legal-body a:hover {
    border-bottom-color: #c9a870;
}

.legal-body strong {
    font-weight: 500;
    color: #2a2a2a;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .legal-hero {
        padding: 60px 0 40px;
    }
    
    .legal-title {
        font-size: 40px;
    }
    
    .legal-content {
        padding: 48px 0 80px;
    }
    
    .legal-intro {
        font-size: 16px;
    }
    
    .legal-body h2 {
        font-size: 26px;
        margin: 40px 0 12px 0;
    }
    
    .legal-body h3 {
        font-size: 20px;
        margin: 24px 0 12px 0;
    }
    
    .legal-body p,
    .legal-body ul li {
        font-size: 15px;
    }
}
