
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff; 
}

header {
  background-color: #f8f0b8;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 50px;
  border-radius: 50%; 
  object-fit: cover; 
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav ul li:last-child {
  margin-right: 0;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff; 
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: #581fc2; 
  color: #fff; 
}

.hero {
  background-color: #ffffff; 
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333; 
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #000000; 
}

.about,
.products,
.testimonials,
.contact {
  padding: 50px 0;
  background-color: #f8f9fa; 
  text-align: center; 
}

.about h2,
.products h2,
.testimonials h2,
.contact h2 {
  margin-bottom: 30px;
  color: #333; 
}

.card {
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff; 
  display: inline-block; 
  margin: 10px; 
  vertical-align: top; 
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.testimonial {
  background-color: #fff; 
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-block; 
  margin: 10px; 
  vertical-align: top; 
}

.contact {
  color: #333; 
}

footer {
  background-color: #ffffff; 
  color: #000000; 
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .card,
  .testimonial {
    display: block; 
    margin: 10px auto; 
  }
}
