    /* Hero Section Styles */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 1rem;
    }

    .hero-logo {
      position: absolute;
      top: 60px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 15;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      color: #111827;
      padding: 2rem;
      border-radius: 0.5rem;
    }

    .logo-img {
      height: 120px;
      width: 180px;
    }

    .hero-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 1.125rem;
      margin-bottom: 1.5rem;
    }

    .hero-button {
      display: inline-block;
      background: linear-gradient(45deg, #3b82f6, #06b6d4);
      color: white;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    @media (min-width: 768px) {
      .hero-title {
        font-size: 3rem;
      }
      
      .hero-subtitle {
        font-size: 1.25rem;
      }
    }