    body {
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      background-color: #f8f5f0;
      color: #333;
    }
    header {
   background-color: #fff;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #e0e0e0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
    }
    nav a {
      margin: 0 1rem;
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }
    .hero {
      background: url('https://via.placeholder.com/1200x500') no-repeat center center;
      background-size: cover;
      text-align: center;
      color: white;
      padding: 6rem 2rem;
    }
    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
    }
    .btn {
      padding: 0.75rem 2rem;
      background-color: #333;
      color: white;
      text-decoration: none;
      border-radius: 5px;
    }
    .section {
      padding: 3rem 2rem;
      text-align: center;
    }
    .products {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
    .product {
      background-color: white;
      padding: 1rem;
      margin: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      max-width: 200px;
    }
    footer {
      background-color: #fff;
      padding: 2rem;
      display: flex;
      justify-content: space-around;
      font-size: 0.9rem;
      border-top: 1px solid #e0e0e0;
    }
    .social {
    visibility: hidden;
    height: 0 ;
    overflow: hidden ;
    opacity: 0 ;
    pointer-events: none ;
    }