/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

h2, h3 {
    color: #333;
}

p {
    color: #555;
}

/* Header */
.header {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.navbar .logo h1 {
    font-size: 2rem;
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f4f4f9;
}

.hero {
    background: #333;
    color: white;
    padding: 50px 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin: 0;
}

.hero p {
    font-size: 1.2rem;
}

.cta-button {
    background-color: #f4f4f9;
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #333;
    color: white;
}

/* About Section */
.about {
    padding: 50px 20px;
    background-color: white;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: 50px 20px;
    background-color: #f4f4f9;
    text-align: center;
}

.product-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.product-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Benefits Section */
.benefits {
    padding: 50px 20px;
    background-color: white;
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits li {
    font-size: 1.1rem;
    margin: 10px 0;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    background-color: #f4f4f9;
    text-align: center;
}

.testimonial {
    margin: 20px 0;
    font-style: italic;
}

.testimonial strong {
    display: block;
    margin-top: 10px;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    background-color: white;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.contact button:hover {
    background-color: #333;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}
