body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
  }
  
  header {
    background-color: #fff;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  header img {
    max-width: 75px;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  /* Default styles for larger screens */
  nav ul.nav-list {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* Styles for smaller screens */
  @media (max-width: 768px) {
    nav ul.nav-list {
      display: none;
      flex-direction: column;
      background-color: #fff;
      position: absolute;
      top: 60px; /* Adjust based on header height */
      left: 0;
      width: 100%;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    nav ul.nav-list.active {
      display: flex;
    }
  }
  
  .banner {
    text-align: center;
    padding: 10px 20px;
    background-color: #eee;
  }
  
  .banner h1 {
    margin-bottom: 0px; /* Adjust the spacing below the h1 */
  }

  .banner h5 {
    margin-top: 0; /* Remove extra spacing above the h5 */
  }

  .product-frame {
    display: block;
    margin: 20px auto; /* Center the image */
    width: 300px; /* Adjust the size as needed */
    height: auto;
    border: 1px solid #000000; /* Frame border */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), /* Shadow for 3D effect */
                0 6px 6px rgba(0, 0, 0, 0.2);
    border-radius: 8px; /* Rounded corners for the frame */
}
  
  .section {
    padding: 40px 20px;
    text-align: center;
  }
  
  .buttons a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
  }
  
  .buttons a:hover {
    background-color: #555;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  footer a {
    color: #fff;
    text-decoration: none;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
  }

  .social-icons a {
    display: inline-block;
  }

  .social-icons img {
    width: 30px; /* Adjust size as needed */
    height: 30px;
    transition: transform 0.3s ease;
  }

  .social-icons img:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
  }
  
  .contact-form {
    width: 90%;  
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
}

.contact-form label {
  display: block;
  margin-top: 20px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1em;
}

.contact-form button {
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background-color: #555;
}

