  /* Hero Section */
  .hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
   height: 100vh;
  max-height: 100vh;
  background: var(--bg-light);
  }
  

  .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  }

  .hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  }

  .hero-illustration {
  width: 100%;
  max-width: 500px;
  height: auto;

  }

  /* Responsive */
@media only screen and (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        margin-top: 10vh;
        padding: 20px;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-illustration {
        margin-top: 50px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
  }

  /* Animations */
  .fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  }

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

  .delay-1 { animation-delay: 0.2s; }
  .delay-2 { animation-delay: 0.4s; }
  .delay-3 { animation-delay: 0.6s; }