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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1a1a2e;
    background: #f8f9fc;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a {
    color: #ff6d5a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */

header {
    background: #fff;
    border-bottom: 1px solid #e8eaf0;
    padding: 16px 0;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
}

/* Hero */

.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 32px;
}

.hero .description {
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

/* Features */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
}

.feature {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 12px;
    padding: 28px;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.feature p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Button */

.btn {
    display: inline-block;
    background: #ff6d5a;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn:hover {
    background: #e85d4a;
    text-decoration: none;
}

/* Content (Privacy page) */

.content {
    padding: 60px 0;
    flex: 1;
}

.content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.content .updated {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 36px;
    margin-bottom: 12px;
}

.content p {
    margin-bottom: 16px;
    color: #444;
}

.content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content li {
    margin-bottom: 8px;
    color: #444;
}

/* Footer */

footer {
    background: #1a1a2e;
    color: #aab;
    padding: 24px 0;
    margin-top: auto;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

footer p {
    font-size: 0.875rem;
}

footer nav {
    display: flex;
    gap: 24px;
}

footer a {
    color: #ccd;
    font-size: 0.875rem;
}

footer a:hover {
    color: #fff;
}

/* Responsive */

@media (max-width: 640px) {
    .hero {
        padding: 48px 0 40px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

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

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

    footer .container {
        flex-direction: column;
        text-align: center;
    }
}
