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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
header {
    border-bottom: 1px solid #e5e5e5;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Hero */
.hero {
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: #555;
    max-width: 560px;
    margin: 0 auto 32px;
}

.btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s;
}

.btn:hover {
    background: #333;
}

/* Footer */
footer {
    margin-top: auto;
    border-top: 1px solid #e5e5e5;
    padding: 24px 0;
    font-size: 0.85rem;
    color: #888;
}

footer .container {
    text-align: center;
}

.footer-links {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    margin: 0 12px;
}

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

/* Legal pages */
.legal {
    padding: 40px 20px 60px;
}

.legal h1 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.legal h2 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal p,
.legal li {
    color: #333;
    margin-bottom: 8px;
}

.legal ul {
    padding-left: 24px;
    margin-bottom: 12px;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 48px 20px;
    }
}

/* Logo image */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 36px;
    width: 36px;
    border-radius: 6px;
    object-fit: cover;
}
