@charset "UTF-8";
.fv {
  width: 100%;
  height: 500px;
  background-image: url("../img/fv_careplan.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fv__title {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
  color: #ff99cc;
  text-shadow: 1px 2px 7px #000;
  padding: 20px;
}
.fv__title h3 {
  color: #fff;
}
.fv__cta {
  margin-top: 20px;
}
.fv__cta .btn:hover {
  opacity: 1;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 550px) {
  .fv__title {
    font-size: 15px;
  }
}
.benefits {
  margin-top: 100px;
  padding-inline: 20px;
}
.benefits__container {
  padding: 40px;
  border: 2px solid #ff99cc;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.benefits h3 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}
.benefits__list {
  list-style-type: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.benefits__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}
.benefits__list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff99cc;
  font-weight: bold;
}

.flow {
  margin-top: 100px;
  padding-inline: 20px;
}
.flow__steps {
  max-width: 800px;
  margin: 0 auto;
}
.flow__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
.flow__step:last-child {
  margin-bottom: 0;
}
.flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 40px;
  height: 40px;
  width: 2px;
  background-color: #ff99cc;
}
.flow .step-number {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  height: 80px;
  background-color: #ff99cc;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-right: 30px;
}
.flow .step-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f5f7fa;
  padding: 25px;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.flow .step-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ff99cc;
}
.flow .step-content p {
  color: #666;
}

@media screen and (max-width: 767px) {
  .flow__step {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flow .step-number {
    -webkit-box-flex: 100%;
        -ms-flex: 100% 100%;
            flex: 100% 100%;
    max-width: 80px;
    height: 60px;
    margin-bottom: 20px;
  }
  .flow .step-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px;
  }
}
@media screen and (max-width: 550px) {
  .flow .step-number {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    height: 80px;
    font-size: 18px;
  }
  .flow .step-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 15px;
  }
  .flow .step-content h3 {
    font-size: 18px;
  }
  .flow .step-content p {
    font-size: 14px;
  }
}