html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

section {
    max-width: 800px;
    padding-bottom: 30px;
    min-height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;     
    justify-content: center;
    align-items: center;
} 

.navbar {
  list-style-type: none;
  display: flex;
  gap: 20px;
  padding: 10px;
  border-radius: 5px;
  color: #f2f2f2;
}

.navbar li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.navbar li a:hover {
  color: #f2f2f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  width: 150px;
  height: auto;
}

.nav .navbar {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border: 10px solid #d3d3d3;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
}

/* Mobile responsive*/
@media (min-width: 768px) {
  .main-content {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }

  .hero-text {
    flex: 1;
    padding-right: 20px;
  }

  .hero-image {
    flex: 1;
  }
  .Contact {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    text-align: center;
  }

  .Contact h1, .Contact h3 {
    text-align: center;
  }

  .Contact iframe {
    flex: 1;
    margin-left: 40px;
  }

  .product-gallery {
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-card {
    flex: 1 1 90%;
    max-width: 300px;
  }

}

h1{
   font-family: Georgia, 'Times New Roman', Times, serif;
}

.Contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.Contact h1, .Contact h3 {
  margin-bottom: 10px;
}

.Contact iframe {
  width: 100%;
  max-width: 600px;
  height: 400px;
  border: 0;
  margin-top: 20px;
}


.product-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.product-card {
  flex: 1 1 300px;
  max-width: 500px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.product-card h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #333;
}

.product-card p {
  font-size: 0.95rem;
  color: #666;
}