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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #10132B;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #10132B;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #10132B 0%, #1a1f3a 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Content Section */
.content {
    background-color: #10132B;
    color: white;
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

.content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #E6F0FA; /* make main title visible on dark bg */
    letter-spacing: -0.5px;
    font-weight: 700;
}

.subtitle {
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
}

.content h2 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #E6F7FA;
    font-weight: 700;
}

.content h3 {
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 10px;
    color: #D7EEF6;
    font-weight: 600;
}

/* Privacy panel and section label styles */
.privacy-content {
    background-color: rgba(255,255,255,0.02);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(2,6,23,0.6);
}

.privacy-content h2 {
    display: block;
    background: transparent;
    padding: 12px 16px;
    border-left: 4px solid #73E7E8;
    border-radius: 6px;
    font-size: 20px;
    color: #E8FBFD;
    margin-top: 18px;
}

/* headings already include their section numbers in text; no extra marker rules required */

.privacy-content p,
.privacy-content li {
    color: #DDEAF6;
    font-size: 16px;
}

.privacy-content ul {
    margin-left: 22px;
}

/* Terms page should match privacy visuals */
.terms-content {
    background-color: rgba(255,255,255,0.02);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(2,6,23,0.6);
}

.terms-content h2 {
    display: block;
    background: transparent;
    padding: 12px 16px;
    border-left: 4px solid #73E7E8;
    border-radius: 6px;
    font-size: 20px;
    color: #E8FBFD;
    margin-top: 18px;
}

.terms-content p,
.terms-content li {
    color: #DDEAF6;
    font-size: 16px;
}

.terms-content ul {
    margin-left: 22px;
}

.content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: white;
}

.content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Quick Links Cards */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background-color: #1a1f3a;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #73E7E8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card h3 {
    margin-top: 0;
    color: white;
}

.card p {
    color: white;
    margin-bottom: 20px;
}

/* Button */
.btn {
    display: inline-block;
    background-color: #73E7E8;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #5fc5c6;
}

/* FAQ Items */
.faq-item {
    background-color: #1a1f3a;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 4px solid #73E7E8;
}

.faq-item h3 {
    margin-top: 0;
    color: white;
}

/* Contact Section */
.contact-section {
    background-color: #1a1f3a;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

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

/* Terms and Privacy Content */
.terms-content,
.privacy-content {
    line-height: 1.8;
}

.terms-content ul,
.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.terms-content li,
.privacy-content li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    background-color: #10132B;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .content h1 {
        font-size: 28px;
    }

    .content h2 {
        font-size: 20px;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-links a {
        display: block;
    }

    .hero h1 {
        font-size: 24px;
    }

    .content h1 {
        font-size: 24px;
    }
}
