/* 
 * Legal Pages Styles
 * Privacy Policy, HIPAA Notice, Terms of Service
 */

/* Legal Page Hero */
.legal-page-hero {
    padding: var(--axis-space-16) 0 var(--axis-space-12);
}

.legal-page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.legal-page-hero .hero-title {
    margin-bottom: var(--axis-space-4);
    color: var(--axis-white);
}

.legal-page-hero .hero-subtitle {
    color: var(--axis-gray-200);
    font-size: var(--axis-text-sm);
    opacity: 0.9;
}

/* Legal Content Section */
.legal-content-section {
    padding: var(--axis-space-16) 0;
    background: var(--axis-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    line-height: 1.8;
}

.legal-content .legal-intro {
    font-size: var(--axis-text-lg);
    margin-bottom: var(--axis-space-10);
    padding-bottom: var(--axis-space-8);
    border-bottom: 2px solid var(--axis-gray-100);
}

.legal-content h2 {
    color: var(--axis-dark);
    font-size: var(--axis-text-2xl);
    margin-top: var(--axis-space-12);
    margin-bottom: var(--axis-space-6);
    font-weight: 700;
}

.legal-content h3 {
    color: var(--axis-dark);
    font-size: var(--axis-text-xl);
    margin-top: var(--axis-space-8);
    margin-bottom: var(--axis-space-4);
    font-weight: 600;
}

.legal-content p {
    margin-bottom: var(--axis-space-6);
    color: var(--axis-gray-700);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--axis-space-6);
    padding-left: var(--axis-space-8);
}

.legal-content li {
    margin-bottom: var(--axis-space-3);
    color: var(--axis-gray-700);
}

.legal-content strong {
    color: var(--axis-dark);
    font-weight: 600;
}

.legal-content a.link-primary {
    color: var(--axis-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.legal-content a.link-primary:hover,
.legal-content a.link-primary:focus-visible {
    color: var(--axis-primary-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-page-hero {
        padding: var(--axis-space-12) 0 var(--axis-space-8);
    }
    
    .legal-content-section {
        padding: var(--axis-space-12) 0;
    }
    
    .legal-content h2 {
        font-size: var(--axis-text-xl);
        margin-top: var(--axis-space-10);
    }
    
    .legal-content h3 {
        font-size: var(--axis-text-lg);
    }
    
    .legal-content .legal-intro {
        font-size: var(--axis-text-base);
    }
}
