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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

header {
    background: #2c5f2d;
    color: white;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1em;
    opacity: 0.9;
}

nav {
    background: #97be5a;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    font-weight: 500;
}

nav a:hover {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

main {
    padding: 40px 20px;
    min-height: 60vh;
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #2c5f2d;
    margin-bottom: 20px;
    font-size: 2em;
}

h3 {
    color: #2c5f2d;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #2c5f2d;
    text-decoration: underline;
}

a:hover {
    color: #97be5a;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: #f5f5f5;
    font-weight: 600;
    color: #2c5f2d;
}

tr:hover {
    background: #f9f9f9;
}

.info-box {
    background: #f0f7f0;
    border-left: 4px solid #2c5f2d;
    padding: 20px;
    margin: 20px 0;
}

footer {
    background: #2c5f2d;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
}

footer p {
    margin: 0;
}
