
        :root {
            --navy: #163B6D;
            --primary-light: #1E5A8E;
            --orange: #BD710D;
            --orange-dark: #a35f0a;
            --white: #ffffff;
            --muted: #5c6370;
            --text-primary: #1c2128;
            --text-secondary: #5c6370;
            --text-light: #8a93a3;
            --bg-light: #f6f8fb;
            --light-bg: #f6f8fb;
            --border-light: #e7eaf0;
        }

/* ============================================
   TERMS OF SERVICE SPECIFIC STYLES
   ============================================ */
.legal-page {
    padding: 40px 0 60px;
}

.legal-page .content-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-page h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.legal-page .last-updated {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.legal-page .last-updated i {
    color: var(--orange);
}

/* ============================================
   DISCLAIMER
   ============================================ */
.legal-page .disclaimer {
    background: #fffbeb;
    border: 1px solid #fefcbf;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.legal-page .disclaimer .disclaimer-icon {
    font-size: 1.4rem;
    color: #d69e2e;
    margin-top: 2px;
    flex-shrink: 0;
}

.legal-page .disclaimer .disclaimer-content {
    color: #975a16;
    font-size: 0.95rem;
    line-height: 1.6;
}

.legal-page .disclaimer .disclaimer-content strong {
    color: #7a4a08;
}

.legal-page .disclaimer .disclaimer-content code {
    background: rgba(0,0,0,0.05);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #7a4a08;
}

/* ============================================
   SECTIONS
   ============================================ */
.legal-page .section {
    margin-bottom: 28px;
}

.legal-page .section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-page .section h2 .section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(245, 154, 35, 0.1);
    color: var(--orange);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.legal-page .section h2 i {
    color: var(--orange);
}

.legal-page .section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-left: 42px;
}

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

.legal-page .section p strong {
    color: var(--text-primary);
}

.legal-page .section p .highlight {
    color: var(--orange);
}

.legal-page .section p .navy {
    color: var(--navy);
    font-weight: 600;
}

.legal-page .section a {
    color: var(--orange);
    text-decoration: none;
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.legal-page .contact-section {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid var(--border-light);
    margin-top: 8px;
}

.legal-page .contact-section h2 {
    margin-top: 0;
}

.legal-page .contact-section p {
    margin-left: 42px;
}

.legal-page .contact-section .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--orange);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.legal-page .contact-section .contact-link:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 154, 35, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .legal-page {
        padding: 24px 0 40px;
    }

    .legal-page h1 {
        font-size: 1.6rem;
    }

    .legal-page .section h2 {
        font-size: 1.1rem;
    }

    .legal-page .section p {
        margin-left: 0;
        font-size: 0.95rem;
    }

    .legal-page .disclaimer {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-page .contact-section p {
        margin-left: 0;
    }

    .legal-page .contact-section .contact-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .legal-page h1 {
        font-size: 1.3rem;
    }

    .legal-page .section h2 {
        font-size: 1rem;
        flex-wrap: wrap;
    }

    .legal-page .section h2 .section-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .legal-page .disclaimer {
        padding: 12px 16px;
    }

    .legal-page .disclaimer .disclaimer-content {
        font-size: 0.88rem;
    }

    .legal-page .contact-section {
        padding: 16px;
    }
}
