body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 20px;
background: #f9f4eb;
color: #2c3e2c;
line-height: 1.6;
}

header {
text-align: center;
background: #4a7043;
color: white;
padding: 3rem 1rem;
border-radius: 12px;
margin-bottom: 2rem;
}

h1 { margin: 0; font-size: 2.8rem; }
h2 { color: #4a7043; border-bottom: 2px solid #ddd; padding-bottom: 8px; }

.plant-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}

.plant-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
text-align: center;
}

.plant-card img {
width: 100%;
height: 240px;
object-fit: cover;
}

.plant-card h3 { margin: 12px 0 5px; }
.plant-card p { margin: 5px 0; padding: 0 12px; }

.contact, .about {
background: white;
padding: 25px;
border-radius: 12px;
margin: 25px 0;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

footer {
text-align: center;
margin-top: 40px;
color: #666;
font-size: 0.9rem;
}
