:root {
    --primary-color: #0a2540;
    --secondary-color: #d7263d;
    --accent-color: #007aff;
    --text-color: #1a1a1a;
    --light-bg: #f7f8fa;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --glass-bg: rgba(255,255,255,0.75);
    --glass-blur: blur(12px);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
}

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    font-family: 'Inter', 'SF Pro Display', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #e9efff 0%, #f7f8fa 100%);
    background-attachment: fixed;
}

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

/* Header & Navigation */
header {
    background: transparent;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: 2rem;
}

nav {
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
    text-decoration: none;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: none;
    color: var(--primary-color);
    padding: 3rem 0 2rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.85;
    font-weight: 500;
}

/* Operators Section */
.operators {
    padding: 2rem 0 3rem 0;
    background: none;
}

.operator-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.operator-card {
    background: var(--glass-bg);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    backdrop-filter: var(--glass-blur);
    border: 1.5px solid rgba(200,200,220,0.18);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.operator-card:hover {
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.18);
    transform: translateY(-4px) scale(1.015);
}

.operator-logo {
    margin-bottom: 1.2rem;
}

.operator-logo img {
    max-width: 120px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.07));
    background: #fff;
    border-radius: 12px;
    padding: 0.5rem 1rem;
}

.operator-card h3 {
    margin-bottom: 0.7rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.operator-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.operator-features span {
    background: linear-gradient(90deg, #e9efff 0%, #f7f8fa 100%);
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(31,38,135,0.04);
}

.terms-section {
    background: rgba(245,247,250,0.7);
    border-radius: 12px;
    padding: 1.1rem 1rem 0.7rem 1rem;
    margin-bottom: 1.2rem;
    text-align: left;
    box-shadow: 0 1px 4px rgba(31,38,135,0.03);
}

.terms-section h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.4rem;
    text-align: center;
    font-weight: 700;
}

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

.terms-section li {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.18rem;
    padding-left: 0;
    position: static;
    font-weight: 500;
}

.terms-section li:before {
    content: none;
}

.show-terms-btn {
    display: inline-block;
    margin: 0.7rem auto 0.2rem auto;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: none;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(31,38,135,0.08);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    outline: none;
}

.show-terms-btn:hover {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 4px 16px rgba(31,38,135,0.13);
    transform: scale(1.04);
}

.full-terms {
    font-size: 0.95rem;
    color: #333;
    margin-top: 0.7rem;
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    box-shadow: 0 1px 4px rgba(31,38,135,0.04);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    padding: 0.85rem 2.2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(31,38,135,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    margin-top: auto;
    border: none;
}

.cta-button:hover {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    box-shadow: 0 4px 16px rgba(31,38,135,0.13);
    transform: scale(1.04);
}

/* Footer */
footer {
    background: none;
    color: var(--primary-color);
    padding: 2.5rem 0 1.5rem 0;
    margin-top: 2rem;
    border-top: 1.5px solid #e5e7eb;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-logos {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    border-radius: 12px;
    background: rgba(245,247,250,0.7);
    padding: 0.7rem 1.2rem;
    box-shadow: 0 1px 4px rgba(31,38,135,0.03);
}

.footer-logos img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: opacity 0.2s, filter 0.2s;
}

.footer-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 700px) {
    .container {
        max-width: 98vw;
        padding: 0 0.5rem;
    }
    .operator-card {
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    }
    .footer-logos {
        gap: 0.75rem;
        padding: 0.5rem 0.5rem;
    }
    .footer-logos img {
        height: 28px;
    }
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1rem;
    background: var(--glass-bg);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: var(--glass-blur);
}

.policy-content h1 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
}

.policy-content h2 {
    margin: 2rem 0 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.policy-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
} 