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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    line-height: 1.8;
    background: #fff;
}

h1, h2, h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

a {
    color: #33804D;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navigation */
.nav {
    background-color: #33804D;
    padding: 16px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav a {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.nav img.nav-icon {
    height: 32px;
}

.nav img.nav-logo {
    height: 44px;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* Footer */
.footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 24px;
    text-align: center;
    font-size: 13px;
    color: #888;
}
