/* Legal Pages Specific Styles */
.legal-section {
    padding: 3rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.legal-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--font1), var(--font3);
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #000;
    font-family: var(--font1), var(--font3);
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #333;
    font-family: var(--font1), var(--font3);
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-family: var(--font2), var(--font3);
}

.legal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    font-family: var(--font2), var(--font3);
}

.legal-section li {
    margin-bottom: 0.5rem;
}

/* Sitemap Specific */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font2), var(--font3);
}

.sitemap-list li {
    margin-bottom: 1rem;
}

.sitemap-list a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font2), var(--font3);
}

.sitemap-list a:hover {
    color: #666;
}

.sitemap-list .sub-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.sitemap-list .sub-list li {
    margin-bottom: 0.5rem;
}

/* Last Updated */
.last-updated {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-family: var(--font2), var(--font3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-title {
        font-size: 1.75rem;
    }
    
    .legal-section h2 {
        font-size: 1.35rem;
    }
    
    .legal-section h3 {
        font-size: 1.15rem;
    }
} 