/* ─────────────────────────────────────────────────────────────────────────────
   General Styles
   ───────────────────────────────────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2ECC71;
    --primary-dark: #27AE60;
    --bg-dark: #0D1117;
    --bg-secondary: #161B22;
    --text-light: #ECF0F1;
    --text-muted: #8B949E;
    --border-color: #30363D;
    --accent-color: #3498DB;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-dark);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Navigation
   ───────────────────────────────────────────────────────────────────────────── */
.navbar {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Header
   ───────────────────────────────────────────────────────────────────────────── */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 3rem 1.5rem;
    text-align: center;
    color: white;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.last-updated {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Content
   ───────────────────────────────────────────────────────────────────────────── */
.content {
    padding: 2rem 1.5rem;
}

.section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.section:last-child {
    border-bottom: none;
}

.section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.subsection {
    margin-bottom: 1.5rem;
}

.subsection h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    margin-top: 1rem;
}

.subsection:first-child h3 {
    margin-top: 0;
}

.subsection p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.subsection ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.subsection li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
    color: var(--text-light);
}

.subsection li:before {
    content: "▪";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Contact Section */
.contact-info {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    margin: 1.5rem 0;
}

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

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.response-time {
    font-style: italic;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Legal Notice */
.legal-notice {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.legal-notice p {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 3rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-dark);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive Design
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-direction: column;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .section h2 {
        font-size: 1.4rem;
    }

    .subsection h3 {
        font-size: 1rem;
    }

    .content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .header h1 {
        font-size: 1.4rem;
    }

    .header {
        padding: 1.5rem 1rem;
    }

    .section h2 {
        font-size: 1.2rem;
    }

    .subsection h3 {
        font-size: 0.95rem;
    }

    .content {
        padding: 1rem;
    }

    .contact-info {
        padding: 1rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Print Styles
   ───────────────────────────────────────────────────────────────────────────── */
@media print {
    .navbar,
    .footer {
        display: none;
    }

    .header {
        background: white;
        color: black;
        padding: 1rem 0;
    }

    .header h1 {
        color: black;
    }

    body {
        background: white;
        color: black;
    }

    .section h2,
    .subsection h3 {
        color: black;
    }
}
