/* Legal Pages Specific Styling */
.legal-content {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

.legal-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content .last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: right;
    font-style: italic;
}

.legal-text {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.legal-text h2 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-size: 1.75rem;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text h3 {
    font-family: 'Inter', sans-serif;
    color: #34495e;
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

.legal-text p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-text ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-text ul li {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    position: relative;
}

.legal-text ul li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: -1.25rem;
}

.legal-text .contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 2rem;
}

.legal-text .contact-info p {
    margin-bottom: 0.5rem;
}

/* Section Underline Consistency */
.legal-content .section-underline {
    width: 80px;
    height: 3px;
    background: #3498db;
    margin: 0 auto 3rem;
}

/* Navigation Spacing */
.legal-content .nav-container {
    padding: 0 20px;
}

/* Print Styles */
@media print {
    .legal-content {
        padding: 20px 0;
    }

    .legal-text {
        box-shadow: none;
        padding: 0;
    }

    .nav-container,
    .footer-content {
        display: none;
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }

    .legal-text {
        padding: 25px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-text h2 {
        font-size: 1.5rem;
    }

    .legal-text h3 {
        font-size: 1.15rem;
    }
}

/* Accessibility Enhancements */
.legal-text {
    line-height: 1.8;
    font-size: 16px;
}

.legal-text a {
    color: #3498db;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-text a:hover,
.legal-text a:focus {
    color: #2980b9;
    text-decoration: none;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .legal-text {
        background: #fff;
        color: #000;
    }

    .legal-text a {
        color: #0000EE;
    }

    .legal-text h2,
    .legal-text h3 {
        color: #000;
    }
}