.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    color: black;
    height:100vh;
  }
  
  .hero-content {
    margin-bottom: 30px;
  }
  
  .hero-content a {
    text-decoration: none;
  }
  
  .hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 10px 20px;
    background-color: #fff;
    color: #0062E6;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .cta-button:hover {
    background-color: #0062E6;
    color: #720404;
  }
  
  .testimonial {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
  }
  
  .testimonial-author {
    text-align: right;
    font-weight: bold;
  }
  
  .testimonial p {
    color: #720d0d;
  }
  