/* Legal Pages Shared Styles */

/* Page Hero */
.legal-hero {
    background: linear-gradient(135deg, #0F1B2D 0%, #16233B 100%);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #D4AF37;
}

.legal-hero .section-label {
    display: inline-block;
    color: #D4AF37;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.legal-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.legal-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

/* Legal Content Area */
.legal-content {
    background: #FFFFFF;
    padding: 80px 0 100px;
}

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

/* Legal Sections */
.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #EAEAEA;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #0F1B2D;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid #D4AF37;
}

.legal-section p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.9;
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: 16px 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-section ul li {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.8;
    padding-left: 8px;
}

.legal-section ul li::marker {
    color: #D4AF37;
}

.legal-section a {
    color: #2872A1;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.legal-section a:hover {
    border-bottom-color: #2872A1;
}

.legal-section strong {
    color: #1E2A32;
    font-weight: 600;
}

/* Logo link in nav */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 120px 0 50px;
    }

    .legal-hero h1 {
        font-size: 36px;
    }

    .legal-content {
        padding: 50px 0 70px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 15px;
    }
}
