/* --- Legal Pages Shared Style --- */
:root {
    --brand-green: #71A086;
    --brand-dark: #2B3440;
    --text-main: #18212f;
    --text-muted: #5f6b7c;
}

body {
    background-color: #f8fbfa;
    color: var(--text-main);
    line-height: 1.8;
}

.legal-header {
    padding: 180px 20px 80px;
    background: linear-gradient(135deg, #1a202c, #2d3748);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.last-updated {
    color: var(--brand-green);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.legal-container {
    max-width: 850px;
    margin: -40px auto 100px;
    background: white;
    padding: 80px 60px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h2::before {
    content: '';
    display: block;
    width: 6px;
    height: 1.5rem;
    background: var(--brand-green);
    border-radius: 4px;
}

.legal-section p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.legal-section ul {
    margin-bottom: 24px;
    margin-left: 20px;
}

.legal-section li {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

/* Contact Block in Legal */
.legal-contact {
    background: #f1f4f3;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e1e9e4;
}

.legal-contact h3 {
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.legal-contact a {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 700;
}

/* Scroll Lock Fix */
.navbar-fill {
    height: 80px; /* Space for the fixed navbar if needed or just use padding */
}

@media (max-width: 768px) {
    .legal-header {
        padding: 140px 20px 60px;
    }
    .legal-header h1 {
        font-size: 2.2rem;
    }
    .legal-container {
        margin: -20px 15px 60px;
        padding: 40px 24px;
        border-radius: 20px;
    }
    .legal-section h2 {
        font-size: 1.4rem;
    }
}
