/* ==========================================================================
   Terms of Service - Dark Professional Theme
   ========================================================================== */

:root {
    --terms-bg: #0a0e17;
    --terms-bg-secondary: #111827;
    --terms-border: #1e293b;
    --terms-text-primary: #e2e8f0;
    --terms-text-secondary: #94a3b8;
    --terms-text-muted: #64748b;
    --terms-accent: #3b82f6;
    --terms-accent-hover: #60a5fa;
    --terms-section-bg: #131a2b;
    --terms-header-border: #1e3a5f;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--terms-text-primary);
    background-color: var(--terms-bg);
    min-height: 100vh;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--terms-header-border);
}

.terms-header h1 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--terms-text-primary);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    color: var(--terms-text-muted);
}

.terms-section {
    background-color: var(--terms-section-bg);
    border: 1px solid var(--terms-border);
    border-radius: 4px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.terms-section h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--terms-text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--terms-border);
}

.terms-section p {
    font-size: 0.9375rem;
    color: var(--terms-text-secondary);
    margin-bottom: 0.75rem;
}

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

.terms-section p strong {
    color: var(--terms-text-primary);
    font-weight: 600;
}

.terms-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0;
}

.terms-section ul li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    color: var(--terms-text-secondary);
    margin-bottom: 0.5rem;
}

.terms-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--terms-accent);
    font-weight: bold;
}

.contact-info {
    background-color: var(--terms-bg-secondary);
    border: 1px solid var(--terms-border);
    border-radius: 4px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.25rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.terms-footer {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--terms-border);
}

.terms-footer p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.8125rem;
    color: var(--terms-text-muted);
}

@media (max-width: 640px) {
    .terms-container {
        padding: 1.5rem 1rem;
    }

    .terms-header h1 {
        font-size: 1.5rem;
    }

    .terms-section {
        padding: 1.25rem;
    }

    .terms-section h2 {
        font-size: 1rem;
    }
}
