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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

html {
    scroll-behavior: smooth;
}

a {
    color: #4a90d9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: #0d1b2a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-logo img {
    height: 32px;
    filter: brightness(0) invert(1);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar-links a {
    color: #8aa8c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: #fff;
    text-decoration: none;
}

.navbar-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 6px;
}

.navbar-cta:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2d4a 50%, #2a3f5f 100%);
    color: #fff;
    padding: 100px 0 90px;
    text-align: center;
}

.hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #5a8ab5;
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 16px;
}

.hero-logo {
    height: 72px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #a8c4e0;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.05rem;
    color: #7a9bbd;
    max-width: 550px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background: #f5f7fa;
}

.section-cta {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2d4a 100%);
    padding: 72px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0d1b2a;
}

.section p {
    max-width: 720px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #444;
}

.section-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.highlight-text {
    font-size: 1.3rem;
    color: #0d1b2a;
    margin-bottom: 20px;
}

/* Two column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Stats */
.stats-row {
    display: flex;
    gap: 24px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 140px;
    background: #fff;
    border: 1px solid #e0e4ea;
    border-radius: 8px;
    padding: 28px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0d1b2a;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.cta-row {
    margin-top: 32px;
}

/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Content pages (about, terms, privacy, contact) */
.content-page {
    padding-top: 48px;
    padding-bottom: 64px;
}

.content-page h1 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #0d1b2a;
}

.content-page h2 {
    font-size: 1.4rem;
    margin-top: 36px;
    margin-bottom: 12px;
    color: #0d1b2a;
}

.content-page h3 {
    font-size: 1.2rem;
    margin-top: 28px;
    margin-bottom: 8px;
    color: #0d1b2a;
}

.content-page p {
    margin-bottom: 12px;
}

.content-page ul {
    margin: 0 0 16px 24px;
}

.content-page li {
    margin-bottom: 8px;
}

.effective-date {
    color: #666;
    font-style: italic;
}

/* Contact form */
.contact-form {
    max-width: 600px;
    margin-top: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: #0d1b2a;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.5;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #fff;
}

.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 16px 20px;
    border-radius: 6px;
    margin-top: 16px;
}

.form-error {
    background: #fbe9e7;
    color: #c62828;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    background: #0d1b2a;
    color: #8aa8c7;
    padding: 48px 32px 24px;
}

.footer-content {
    max-width: 960px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #1e3050;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    height: 28px;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #6b8db0;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    gap: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-col a {
    color: #6b8db0;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #3d5a7a;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    .navbar-links {
        gap: 16px;
    }

    .hero {
        padding: 64px 0 56px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-logo {
        height: 52px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        min-width: unset;
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section {
        padding: 56px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-nav {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .navbar-links a:not(.navbar-cta) {
        display: none;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 24px;
    }
}
