/* Legal Pages Specific Styles */
.legal-content-section {
    padding: 120px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 200px); /* Adjust based on header/footer height */
    box-sizing: border-box;
}

.legal-content-section .container {
    width: 100%;
    max-width: 900px; /* Slightly wider for better readability */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.legal-content-section h1 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.legal-content-section h2 {
    color: var(--primary);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.legal-content-section p,
.legal-content-section address,
.legal-content-section ul,
.legal-content-section ol {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-content-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-content-section a:hover {
    text-decoration: underline;
}

.back-button-container {
    margin-bottom: 2rem;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-content-section {
        padding: 100px 0 60px;
    }
    
    .legal-content-section h1 {
        font-size: 2rem;
    }
    
    .legal-content-section h2 {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .legal-content-section {
        padding: 80px 0 40px;
    }
    
    .legal-content-section h1 {
        font-size: 1.75rem;
    }
    
    .legal-content-section h2 {
        font-size: 1.25rem;
    }
}
