#what-is h2 {
  max-width: 1200px;
}

#what-is p {
  max-width: 1200px;
  text-align: justify;
}

#insurance-steps #card-wrapper {
  margin-top: 20px;
}

#insurance-steps .card {
  display: flex;
  gap: 30px;
  background-color: #EE373211;
  padding: 40px;
  border-radius: 40px;
  width: 60%;
  margin-bottom: 60px;
  transition: background-color 0.3s;
}

#insurance-steps .card:hover {
  background-color: #0B00CF11;
}

#insurance-steps .card:nth-of-type(even) {
  margin-left: auto;
}

#insurance-steps .card .left {
  font-size: 76px;
  line-height: 76px;
  font-weight: 800;
  color: #EE3732;
  padding-right: 30px;
  border-right: 3px solid #EE3732;;
  height: 76px;
  transition: color 0.3s, border-color 0.3s;
}

#insurance-steps .card:hover .left {
  color: #0B00CF;
  border-right: 3px solid #0B00CF;
}

#insurance-steps .card h3 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  color: #EE3732;
  margin: 14px 0 30px;
  transition: color 0.3s;
}

#insurance-steps .card:hover h3 {
  color: #0B00CF;
}

#insurance-steps p {
  margin-bottom: 20px;
  margin-top: 0;
}

#why-us p,
#what-insure p,
#qna p {
  max-width: 1200px;
  text-align: justify;
}

@media (max-width: 1079px) {
  #insurance-steps .card .left {
    font-size: 60px;
    line-height: 60px;
    padding-right: 20px;
    height: 60px;
  }

  #insurance-steps .card h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 10px 0 30px;
  }

  #insurance-steps .card {
    padding: 20px;
    width: 100%;
    margin-bottom: 40px;
    gap: 20px;
  }

  #insurance-steps p {
    font-size: 16px;
    line-height: 26px;
  }
}