
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f9f6;
    color: #333;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo {
    height: 50px;
}
nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #2e7d32;
    font-weight: bold;
}
.hero {
    text-align: center;
    padding: 60px 20px;
    background: #eaf5ea;
}
.hero h1 {
    font-size: 42px;
    color: #2e7d32;
}
.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto;
}
.cta-buttons .btn {
    display: inline-block;
    margin: 10px;
    padding: 15px 25px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
}
.btn.primary {
    background-color: #2e7d32;
    color: #fff;
}
.btn.secondary {
    background-color: #ffffff;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}
section {
    padding: 50px 20px;
    text-align: center;
}
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.feature {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 20px;
    max-width: 250px;
}
footer {
    background: #2e7d32;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}
