
.hero {
  padding: 60px 5%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: white;
  max-height: 500px;
}

    .hero-text {
      flex: 1 1 400px;
      padding-right: 40px;
    }

    .hero-text h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #0f172a;
    }
.hero-image img {
  max-width: 100%;
  height: 500px;
  max-height: 100%;
}

    .hero-text p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #475569;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
    }

    .hero-buttons a {
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background-color: #2563eb;
      color: white;
    }

    .btn-primary:hover {
      background-color: #1d4ed8;
    }

    .btn-outline {
      border: 2px solid #2563eb;
      color: #2563eb;
    }

    .btn-outline:hover {
      background-color: #2563eb;
      color: white;
    }

    .hero-image {
      flex: 1 1 400px;
      text-align: center;
    }

   

    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }

      .hero-text {
        padding-right: 0;
      }

      .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
      }
    }