/* Legal CSS - Document-style layouts for legal pages */

/* Page Hero Section for Legal Pages */
.page-hero {
    background: var(--light-green);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-light);
}

.page-header-content {
    text-align: left;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Legal Pages Styles */
.legal-content {
    padding: 60px 0;
    background: var(--white);
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-document {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 48px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-green);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.legal-section li:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    font-weight: 600;
    color: var(--primary-green);
}

.legal-section a {
    color: var(--accent-green);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-green);
}

.legal-section a:hover {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

/* Legal Pages Mobile Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 40px 0;
    }
    
    .content-container {
        padding: 0 16px;
    }
    
    .legal-document {
        padding: 24px;
        border-radius: 4px;
    }
    
    .legal-section h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
}