.hero {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #afc6d6, #2487c8);
    height: 100vh;
    padding: 20px;
    color: white;
    width: 100%;
  }
  
  .hero-text {
    flex: 1 1 50%;
    padding: 20px;
  }
  
  .hero-text h1 {
    margin-top: 150px;
    font-size:60px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .hero-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .hero-text h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .hero-text p {
    font-size: 20px;
    line-height: 1.6;
  }
  
  .hero-image {
    flex: 1 1 50%;
    padding: 20px;
    height: 600px;
  }
  
  .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    float: right;
    max-height: 650px;
    margin-top: 100px;
  }
  
  .hero-text .btn {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
  }
  
  .hero-text .btn:hover {
    background-color: #2980b9;
  }

  @media (max-width: 992px) {
    .hero-image {
      flex: 1 1 50%;
      padding: 20px;
      height: 600px;
    }
  }
  
  
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-text, .hero-image {
      flex: 1 1 100%;
      padding: 10px;
      
    }
  
    .hero-text h1 {
      font-size: 50px;
    }
  
    .hero-text h2 {
      font-size: 30px;
    }
    .hero-text h3 {
      font-size: 20px;
    }
  
    .hero-text p {
      font-size: 16px;
    }
    .hero-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      float: right;
      max-height: 600px;
      margin-top: 100px;
    }
    
  }
  