<style>
body {
margin: 0;
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: #1f2933;
background: linear-gradient(180deg, #f4fbf7 0%, #ffffff 60%);
}
header {
padding: 3rem 1.5rem;
max-width: 1100px;
margin: auto;
background: linear-gradient(135deg, #e6f4ee 0%, #f9fdfb 100%);
border-radius: 0 0 24px 24px;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 4rem;
}
nav a {
text-decoration: none;
color: #1f2933;
margin-left: 1.5rem;
font-weight: 500;
}
nav a:hover {
color: #2f855a;
}
.hero h1 {
font-size: 2.5rem;
max-width: 700px;
}
.hero p {
font-size: 1.1rem;
max-width: 650px;
color: #4b5563;
}
section {
padding: 4rem 1.5rem;
max-width: 1100px;
margin: auto;
}
h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: #2f855a;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
footer {
padding: 2rem 1.5rem;
text-align: center;
font-size: 0.9rem;
color: #6b7280;
}
</style>

