body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
  }

.wrapper {
    max-width: 1024px;
    margin: 0 auto;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    background-color: #333;
    color: #fff;
  }
  
  .logo {
    display: flex;
    font-size: 24px;
    font-weight: bold;
    height: 30px;
    color: #fff;
  }

  .logo img{
    height: 50px;
  }
  nav a {
    text-decoration: none;
    color: #fff;
  }
  
  .slider {
    height: 400px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
  }
  
  .slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .product-recommendations {
    background-color: #fff;
    padding: 20px;
  }
  
  .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10%;
  }
  
  .product {
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
    flex-basis: calc(44.33% - 20px);
  }
  
  .product img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  
  .company-introduction {
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
  }
  
  .company-introduction img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
  }
  
  footer {
   
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px 10px;
  }
  
  footer p {
    text-align: center;
  }