.hero-section {
  width: 100%;
  border-radius: 300px 0 0 0;
  background-color: #e5f0ff;
  margin-top: 16px;
}

.hero-rigth-content {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.hero-rigth-content img {
  display: flex;
  align-items: center;
  width: 100%;

  @media (max-width: 480px) {
    padding: 0 24px;
    width: 100%;
  }
}

.hero-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;

  @media (max-width: 480px) {
    flex-direction: column;
    justify-content: center;
    margin: 0;
    width: 100%;
  }
  
    @media (min-width: 768px) and (max-width: 991px) {
    padding-left: 24px;
  }
}

.hero-left-content {
}

.hero-left-content h1 {
  color: #011e41;
  font-size: 35px;
  line-height: 48px;
}

.hero-left-content {
  @media (max-width: 480px) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 24px 0 24px;
  }
}

.hero-left-content p {
  color: #4b4b4b;
  margin: 16px 0;
  width: 100%;
  line-height: 28px;

  @media (max-width: 480px) {
    width: 100%;
  }
}

.hero-left-content h1 {
  @media (max-width: 480px) {
    width: 100%;
    text-align: center;
  }
}

.hero-rigth-content {
  padding-top: 50px;
}

.hero-center-text {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;

  @media (max-width: 480px) {
    background-color: #fdfdfe;
    padding: 72px 24px 24px 24px;
    margin: 0;
    text-align: center;
  }
  
   @media (min-width: 768px) and (max-width: 991px) {
    margin-top: 40px;
    padding: 0 24px;
  }
}

.hero-center-text h1 {
  color: #011e41;
  font-size: 32px;

  @media (max-width: 480px) {
    font-size: 28px;
  }
  
    @media (min-width: 768px) and (max-width: 991px) {
    text-align: center;
  }
}

.hero-center-text p {
  width: 100%;
  text-align: center;
  margin-top: 8px;
  line-height: 28px;
  color: #4b4b4b;

  @media (max-width: 480px) {
    display: none;
  }
  
    @media (min-width: 768px) and (max-width: 991px) {
    display: none;
  }
  
}

.hero-card-container {
  width: 100%;
  display: flex;
  gap: 16px;
  max-width: 1240px;
  margin: 60px auto;

  @media (max-width: 480px) {
    flex-direction: column;
    padding: 0 24px;
    margin: 0;
    background-color: #fdfdfe;
  }
  
    @media (min-width: 768px) and (max-width: 991px) {
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
 
}

.hero-card-item {
  display: flex;
  flex-wrap: wrap;
  min-height: 332px;
  max-height: 332px;
  overflow-y: auto;
  flex-direction: column;
  width: 100%;
  background-color: #fdfdfe;
  border-radius: 16px;
  padding: 32px;
  gap: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #dedede;
}

.hero-card-item img {
  width: 46px;
  height: 46px;
}
.hero-card-item h2 {
  color: #011e41;
  font-size: 18px;
}

.hero-card-item p {
  color: #4b4b4b;
  font-size: 14px;
}

.hero-button-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding-bottom: 32px;

  @media (max-width: 480px) {
    background-color: #fdfdfe;
    margin-top: 0;
    padding-top: 32px;
  }
}
.contact-form {
  width: 100%;

  max-width: 500px;
  display: flex;
  flex-direction: column;
  margin-top: -60px;

  border: 1px solid #deecff;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.02),
    0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0143771),
    0px 22.3363px 17.869px rgba(0, 0, 0, 0.0119221),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.01),
    0px 6.6501px 5.32008px rgba(0, 0, 0, 0.00807786),
    0px 2.76726px 2.21381px rgba(0, 0, 0, 0.00562291);

  padding: 40px;
  border-radius: 12px;
  background-color: #fdfdfe;

  @media (max-width: 480px) {
    margin-top: 24px;
    padding: 24px;
  }