
body {
    font-family: Arial, sans-serif;
    background-color: #fdfaf2;
    color: #1f2d1d;
    margin: 0;
    padding: 0;
}
header {
    background-color: #6c8b4d;
    color: white;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    font-size: 1.5em;
}
header nav a {
    margin: 0 1em;
    color: white;
    text-decoration: none;
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fdfaf2;
    padding: 2em;
}
.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.hero-text {
    text-align: center;
    margin-top: 1em;
}
.hero-text h1 {
    font-size: 2em;
}
.hero-text button {
    background-color: #f08b6d;
    color: white;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}
.features {
    padding: 2em;
    background-color: #f9f5e9;
}
.features h2 {
    text-align: center;
}
.features .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1em;
    margin-top: 1em;
}
.signup, .about {
    padding: 2em;
    text-align: center;
}
.signup form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 400px;
    margin: 0 auto;
}
.signup input, .signup button {
    padding: 0.75em;
    font-size: 1em;
}
.signup button {
    background-color: #6c8b4d;
    color: white;
    border: none;
    border-radius: 5px;
}
footer {
    background-color: #e9e4d9;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
}
