.hero {
    width: 100%;
    padding: 60px 20px;
    margin: 60px 0 0 0 !important;
    box-sizing: border-box;
  
    background-image: url('../image/svg/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .hero-text {
    color: white !important;
    max-width: 500px;
    padding: 20px;
  }
  
  .hero-text p {
    font-size: 1.6rem;
    margin-bottom: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    color: white !important;
  }
  
  .hero-text p.revealed {
    opacity: 1;
    transform: translateY(0);
    color: white !important;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 1rem 0 2rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    white-space: nowrap;
  }
  
  .hero-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 1rem 0 2rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    white-space: nowrap;
  }
  
  .survey-button {
    background-color: white;
    color: #003fa3;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .survey-button:hover {
    background-color: #e6e6e6;
  }
  