/* General Styles */

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px;
  background-color: #3333330d;
  color: #000;
}
.logo-container {
  display: flex;
  align-items: center;
}
.logo_img {
  max-height: 48px;
}
.title {
  font-size: 1.2rem;
  margin: 0, 0, 0, 0;
}
.menu ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-left: 20px;
}

.menu a {
  color: #000;
  text-decoration: none;
}

.search {
  float: right;
  margin-top: 10px;
}

.search form {
  display: flex;
  align-items: center;
}

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

.search button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.cart {
  float: right;
  margin-top: 10px;
}

/* Hero Styles */
.hero {
  text-align: left;
  padding: 20px 0;
}

.hero h1 {
  font-size: 26px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  line-height: 1.5;
}

/* Features Styles */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.feature {
  width: 30%;
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

.feature img {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 16px;
  line-height: 1.5;
}

/* Products Styles */
.products {
  display: flex;
  /* flex-wrap: wrap; */
  /* justify-content: space-between; */
  margin-bottom: 50px;
}

.product {
  width: 46%;
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

.product img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product p {
  font-size: 16px;
  line-height: 1.5;
}

.product .button {
  display: inline-block;
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}

/* Testimonials Styles */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.testimonial {
  width: 45%;
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

.testimonial img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.testimonial blockquote {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.testimonial cite {
  font-style: italic;
  font-size: 16px;
}

/* CTA Styles */
.cta {
  text-align: center;
  margin-bottom: 50px;
}

.cta .button {
  display: inline-block;
  background-color: #4193D9;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

/* Footer Styles */
footer {
  background-color: #3333330d;
  color: #000000a7;
  padding: 8px 0;
  height: 64px;
}

.copyright {
  text-align: center;
  margin-bottom: 10px;
}

.social-media {
  text-align: center;
}

.social-media ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-media ul li {
  display: inline-block;
  margin: 0 10px;
}

.social-media ul li a {
  color: #fff;
}
