
.hero {
    padding: 5rem 0;
    text-align: center;
  }
  .hero h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out 0.1s forwards;
  }
  body.dark .hero h2 {
    background: linear-gradient(90deg, var(--light-blue), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out 0.2s forwards;
  }
  .hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out 0.3s forwards;
  }
  
  @media (max-width: 768px) {
    .hero {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
    .hero h2 {
      font-size: 2.2rem;
    }
    .hero-actions {
      flex-direction: column;
      gap: 0.75rem;
    }
  }