 /* Header Styles */
 header {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

nav li:last-child {
  margin-right: 0;
}

nav a {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 0;
}

.logo img {
  max-height: 100px;
}

 /* Footer Styles */
 footer {
  background-color: black;
  padding: 20px 0;
  text-align: center;
  color: white;
  margin-top: 100px;
}

footer p {
  font-size: 0.8rem;
  margin: 0;
}     

main {
  flex-grow: 1;
  margin-top: 200px;
}


/* General Styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 750px;
  height: 750px;
  border: 1px solid #ddd;
  padding: 20px;
  margin: 20px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  margin-left: auto;
  margin-right: auto;
 
}

.product-container img {
  width: 90%;
  height: 600px;
  object-fit: cover;
  margin-bottom: 20px;
  margin-top: 10px;
  line-height: 1.5;
}

.product-container h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.product-container p {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

.button {
  text-align: center;
  margin-top: 100px;
}

.product-container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 750px;
  height: 250px;
  border: 1px solid #ddd;
  padding: 20px;
  margin: 20px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  margin-left: auto;
  margin-right: auto;
}

/* General Styles */

/* Existing styles... */

/* Header Styles */

/* Existing styles... */

/* Hero Section Styles */

/* Existing styles... */

/* About Section Styles */

/* Existing styles... */

/* Footer Styles */

/* Existing styles... */

/* Responsive Styles */

@media only screen and (max-width: 600px) {
  /* Styles for devices with a maximum width of 600px or less */

  /* Example: Adjusting the font size for smaller screens */
  h2 {
    font-size: 1.5rem;
  }

  /* Example: Modifying the layout for smaller screens */
  .product-listing {
    flex-wrap: wrap;
  }

  /* Example: Adjusting the width of product items */
  .product {
    width: 100%;
  }

  /* Example: Adjusting the height of product images */
  .product img {
    height: auto;
    margin-top: 20px;
  }

  /* Add more responsive styles as needed for different elements and sections */
}