body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  bottom: 0;
  width: 100%;
}
.contact-us {
  text-align: center;
  padding: 20px;
}
.contact-us h2 {
  margin: 10px;
}

.contact-us form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.contact-us input,
.contact-us textarea {
  width: 300px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-us button {
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
/* Hero Section */
.hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.content-section {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
}

.content-section img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.content-section p {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* .image-left {
  flex-direction: row-reverse;
} */

@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    text-align: center;
  }

  .content-section img {
    max-width: 100%;
  }

  .content-section p {
    margin-top: 20px;
  }
  .product-card {
    width: 100% !important;
  }
}

.product-section {
  max-width: 1200px;
  margin: 3px auto;
  padding: 20px;
}

.product-section h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

.product-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.product-card {
  background-color: rgb(244, 244, 244);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: calc(25% - 20px);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: auto;
}

.product-card h3 {
  margin: 15px 0;
  font-size: 1rem;
}

.product-card p {
  margin: 0 0 15px;
  font-size: 1rem;
  color: #000000;
  font-weight: bold;
}
