 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #ffffff;
      color: #333;
      line-height: 1.6;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(to right, #7c3aed, #4f46e5);
      color: white;
      text-align: center;
      padding: 80px 20px 100px;
      position: relative;
      overflow: hidden;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      animation: fadeInUp 1s ease forwards;
    }

    .hero p {
      font-size: 1.2rem;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.3s;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50px;
      background-color: white;
      border-top-left-radius: 30px;
      border-top-right-radius: 30px;
    }

    /* Product Section */
    .products {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .products h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .card {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      overflow: hidden;
      transform: translateY(50px);
      opacity: 0;
      transition: transform 0.6s ease, opacity 0.6s ease;
    }

    .card.visible {
      transform: translateY(0);
      opacity: 1;
    }

    .card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .card-content {
      padding: 15px;
      text-align: center;
    }

    .card-content h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .card-content p {
      color: #555;
      margin-bottom: 10px;
    }

    .card-content button {
      padding: 8px 20px;
      background-color: #7c3aed;
      color: white;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .card-content button:hover {
      background-color: #5b21b6;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive text */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }

      .hero p {
        font-size: 1rem;
      }
    }
 