  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f0f4f8;
    }

    #hero {
      
      background: linear-gradient(to right, #3b82f6, #6366f1);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px 40px;
      position: relative;
    }

    .hero-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      width: 100%;
      gap: 40px;
      flex-wrap: wrap;
    }

    .hero-text {
      flex: 1;
      animation: fadeInLeft 1s ease forwards;
    }

    .hero-text h1 {
      font-size: 48px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .hero-text p {
      font-size: 22px;
      margin-bottom: 30px;
    }

    .hero-text a {
      background: white;
      color: #3b82f6;
      padding: 12px 28px;
      font-size: 16px;
      border: none;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s ease;
    }

    .hero-text a:hover {
      background: #e0e7ff;
    }

    .hero-image {
      flex: 1;
      text-align: center;
      animation: fadeInRight 1s ease forwards;
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
      max-height: 500px;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .scroll-down {
      position: absolute;
      bottom: 20px;
      animation: bounce 2s infinite;
    }

    .scroll-down svg {
      width: 30px;
      height: 30px;
      stroke: white;
    }

    @keyframes fadeInLeft {
      0% {
        opacity: 0;
        transform: translateX(-50px);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      0% {
        opacity: 0;
        transform: translateX(50px);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    @media (max-width: 768px) {
      .hero-container {
        flex-direction: column;
        text-align: center;
      }

      .hero-text h1 {
        font-size: 36px;
      }

      .hero-text p {
        font-size: 18px;
      }
    }