@import url('variables.css');

/* --- Minimal Legal Hero --- */
.legal-page-main {
    background-color: #FAFAFC;
    min-height: 100vh;
}
.legal-hero {
    padding: 160px 0 60px 0;
    text-align: center;
}
.legal-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
    font-family: var(--font-secondary, 'Lato', sans-serif);
    font-size: 0.85rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}
.legal-title {
    font-family: var(--font-primary, 'Noto Serif Display', serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #111;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}
.legal-date {
    font-family: var(--font-secondary, 'Lato', sans-serif);
    font-size: 1rem;
    color: #888;
}

/* --- Main Content Section --- */
.content-section {
    padding: 0 0 150px;
}

.content-body {
    background: #fff;
    padding: 60px 80px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    font-family: var(--font-secondary, 'Lato', sans-serif);
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* Common styling for elements inside the description */
.content-body h1,
.content-body h2,
.content-body h3 {
    font-family: var(--font-primary, 'Noto Serif Display', serif);
    color: #111;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.content-body h2 { font-size: 2rem; }
.content-body h3 { font-size: 1.5rem; }

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body ul, .content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-body li {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-body {
        padding: 40px 30px;
    }
}