body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
color: #333;
background-color: #f4f4f4;
}
header {
background-color: #4CAF50;
color: white;
padding: 1rem;
position: fixed;
width: 100%;
top: 0;
z-index: 100;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul {
list-style: none;
display: flex;
gap: 1rem;
}
nav a {
color: white;
text-decoration: none;
}
.hero {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5rem 2rem 2rem;
background: linear-gradient(to right, #e8f5e8, #c8e6c9);
min-height: 80vh;
}
.hero-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.cta-button {
background-color: #4CAF50;
color: white;
padding: 0.75rem 1.5rem;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1.2rem;
}
.hero-image img {
max-width: 300px;
border-radius: 10px;
}
.benefits {
padding: 3rem 2rem;
text-align: center;
background-color: white;
}
.benefit-list {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin-bottom: 2rem;
}
.benefit-item {
max-width: 300px;
margin: 1rem;
}
.testimonials {
padding: 3rem 2rem;
background-color: #e8f5e8;
text-align: center;
}
.testimonial-slider {
display: flex;
overflow-x: auto;
gap: 1rem;
}
.testimonial {
background: white;
padding: 1rem;
border-radius: 10px;
min-width: 250px;
}
.order {
padding: 3rem 2rem;
text-align: center;
background-color: white;
}
.order-form {
display: flex;
flex-direction: column;
gap: 1rem;
max-width: 400px;
margin: 0 auto;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1rem;
}
@media (max-width: 768px) {
.hero {
flex-direction: column;
text-align: center;
}
.benefit-list {
flex-direction: column;
}
}