/* 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;
  }

  /* 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;
  }

  .product-listing {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
    
  }
  
  .product {
    width: 33.33%;
    text-align: center;
  }
  
  .product img {
    max-width: 300px; /* set a fixed width */
  height: 400px; /* set a fixed height */
  object-fit: cover; /* ensure the image fills the container */
  margin-top: 100px;
  }
  
  .product h3 {
    margin-top: 20px;
    font-size: 1.5rem;
  }
  
  .product p {
    margin-top: 10px;
    font-size: 1rem;
  }
  
  .product button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: black;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .product button:hover {
    background-color: #717272;
    color: white;
    
    
  }

  /* 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;
  }

  .product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 600px;
    height: 800px;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .product-container img {
    width: 90%;
    height: 600px;
    object-fit: cover;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  .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;
  }
  
  .product-container button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .product-container button:hover {
    background-color: #717272;
  }

  /* 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;
    max-height: min-content;
  }

  /* Add more responsive styles as needed for different elements and sections */
}
