*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-muted: #555;
    --color-accent: #2c6e49;
    --color-accent-dark: #1f4f35;
    --color-border: #e0e0e0;
    --color-hero-bg: #f4f9f6;
    --color-footer-bg: #1a1a1a;
    --color-footer-text: #ccc;
    --font: 'Georgia', serif;
    --font-sans: system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
}

.logo {
    font-family: var(--font);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-accent);
    letter-spacing: 0.02em;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

/* Hero */
.hero {
    background: var(--color-hero-bg);
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-family: var(--font);
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}

.btn:hover {
    background: var(--color-accent-dark);
    text-decoration: none;
}

/* Features */
.features {
    padding: 4rem 0;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.feature h3 {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

/* Legal pages */
.legal {
    padding: 3rem 0 4rem;
}

.legal h1 {
    font-family: var(--font);
    font-size: 2.25rem;
    color: var(--color-accent);
    margin-bottom: 0.4rem;
}

.last-updated {
    color: var(--color-muted);
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
}

.legal h2 {
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    color: var(--color-text);
}

.legal p,
.legal li {
    color: var(--color-muted);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.legal ul {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal li {
    margin-bottom: 0.35rem;
}

/* Footer */
footer {
    background: var(--color-footer-bg);
    color: var(--color-footer-text);
    padding: 2rem 0;
    font-size: 0.875rem;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

footer nav {
    display: flex;
    gap: 1.5rem;
}

footer a {
    color: var(--color-footer-text);
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
}
