/* ===== Legal Pages Styles ===== */
.legal-page {
    padding: 100px 0 60px;
    min-height: calc(100vh - 200px);
}

.legal-page h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1e293b;
}

.legal-section {
    margin-bottom: 10px;
    padding: 10px 0;
}

.legal-section h2 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.legal-section p {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 6px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 4px 0 8px;
}

.legal-section ul li {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.6;
    padding-left: 14px;
    position: relative;
    margin-bottom: 2px;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6366f1;
}

/* Active nav link */
.nav-links a.active {
    color: #ffffff;
}

.nav-links a.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 80px 0 60px;
    }

    .legal-page h1 {
        font-size: 1.8rem;
    }
}
