
    /* Reset and base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
      background: #fff;
      color: #111;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      border-bottom: 1px solid #ddd;
      position: sticky;
      top: 0;
      background: #fff;
      z-index: 1000;
    }

    .logo {
      font-weight: 700;
      font-size: 1.5rem;
      letter-spacing: 0.1em;
      cursor: pointer;
    }

    nav a {
      color: #111;
      text-decoration: none;
      margin-left: 2rem;
      font-weight: 500;
      font-size: 0.95rem;
    }

    nav a:hover {
      text-decoration: underline;
    }

    /* Hero section */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 4rem 1rem;
      text-align: center;
      background: #f5f5f7;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      max-width: 600px;
    }

    .hero img {
      max-width: 100%;
      height: auto;
      border-radius: 1rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Products section */
    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      padding: 3rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .product-card {
      background: #fff;
      border-radius: 1rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 1rem;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-card img {
      max-width: 100%;
      border-radius: 1rem;
    }

    .product-card h3 {
      margin: 1rem 0 0.5rem;
      font-weight: 700;
    }

    .product-card p {
      color: #666;
      font-size: 0.9rem;
    }

    /* Footer */
    footer {
      background: #f5f5f7;
      padding: 2rem;
      text-align: center;
      color: #666;
      font-size: 0.9rem;
      position: relative;
      bottom: 0 !important;
      width: 100%;
    }

    .content {
      min-height: calc(100vh - 155px); /* Adjust 120px based on actual header/footer height */
    }





    @media (max-width: 600px) {
      .hero h1 {
        font-size: 2rem;
      }
    }