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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f3460;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0f3460;
}

/* Hero */
.hero {
    text-align: center;
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: #fff;
}

.hero h1 {
    font-size: 2.5rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #e94560;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #c73652;
}

/* Features */
.features {
    padding: 4rem 5%;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0f3460;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    border-radius: 8px;
    background: #f8f9fa;
    text-align: left;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: #0f3460;
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
}

/* How it works */
.how-it-works {
    padding: 4rem 5%;
    background: #f0f4f8;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0f3460;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 2rem;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0f3460;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    color: #0f3460;
}

.step p {
    color: #555;
    font-size: 0.95rem;
}

/* Contact */
.contact {
    padding: 4rem 5%;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #0f3460;
}

.contact > p {
    margin-bottom: 2rem;
    color: #555;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

input, textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #0f3460;
}

button {
    padding: 0.8rem;
    background: #0f3460;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #16213e;
}

/* Legal pages */
.legal {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 5% 4rem;
}

.legal h1 {
    font-size: 2rem;
    color: #0f3460;
    margin-bottom: 0.5rem;
}

.legal-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal h2 {
    font-size: 1.3rem;
    color: #0f3460;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.legal h3 {
    font-size: 1.1rem;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal p {
    color: #444;
    margin-bottom: 0.8rem;
}

.legal ul {
    color: #444;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal li {
    margin-bottom: 0.4rem;
}

.legal a {
    color: #0f3460;
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 5%;
    background: #1a1a2e;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }
}
