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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #8BA2E9 0%, #D0D5E5 50%, #E6E9CC 100%);
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

.nav {
    max-width: 650px;
    margin: 0 auto 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInDown 0.6s ease-out;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card {
    background: linear-gradient(135deg, #1E3FA6 0%, #7D7D7A 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 80px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInDown 0.6s ease-out 0.1s backwards;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.tagline {
    font-size: 18px;
    color: #D96F4D;
    font-weight: 500;
    margin-bottom: 28px;
}

.description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    margin-bottom: 40px;
    text-align: left;
}

.section:last-of-type {
    margin-bottom: 0;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    color: #D96F4D;
    margin-bottom: 16px;
    text-align: center;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-align: center;
}

.providers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.provider {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.coming-soon {
    margin-top: 40px;
    padding: 16px 32px;
    background: rgba(217, 111, 77, 0.2);
    border: 2px solid #D96F4D;
    border-radius: 12px;
}

.coming-soon p {
    font-size: 16px;
    font-weight: 600;
    color: #D96F4D;
}

footer {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    text-align: center;
    animation: fadeInDown 0.6s ease-out 0.3s backwards;
}

/* Legal pages styling */
.legal-card {
    background: linear-gradient(135deg, #1E3FA6 0%, #7D7D7A 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    animation: fadeInDown 0.6s ease-out 0.1s backwards;
    text-align: left;
}

.legal-card h1 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.legal-card h2 {
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 12px;
    text-align: left;
}

.legal-card h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-card p, .legal-card ul {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-card ul {
    padding-left: 20px;
}

.legal-card li {
    margin-bottom: 8px;
}

.legal-card a {
    color: #D96F4D;
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .card {
        padding: 48px 32px;
    }

    h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 16px;
    }

    .description {
        font-size: 15px;
    }

    .logo {
        width: 140px;
        height: 140px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-link {
        font-size: 14px;
        padding: 6px 12px;
    }

    .legal-card {
        padding: 32px 24px;
    }
}
