.service__body {
  display: flex;
  justify-content: center;
}

.service__body>div {
  width: 50%;
}

.sevice__description-title>.title {
  text-align: left;
  font-weight: bold;
}

.service__description-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1rem 0;
}

.service__description-advantages {
  margin: 2rem 0;
}

.service__description-advantages ul {
  font-weight: bold;
  font-size: 1.5rem;
}

.service__steps {
  background-color: var(--light-gray);
}

.service__steps-title {
  font-size: 3rem;
  font-weight: bolder;
  text-align: center;
}

.service__steps-title>span {
  font-weight: bold;
  text-decoration: underline;
}

.service__steps-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.service__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 15rem;
  width: 15rem;
  gap: 0.5rem;
}

.service__step-icon {
  width: 7rem;
  aspect-ratio: 1 / 1;
  position: relative;
  margin-bottom: 1rem;
}

.service__step-name {
  color: var(--red);
  font-weight: bolder;
  font-size: 2rem;
}

.service__step-description {
  color: var(--gray);
  font-weight: bolder;
  font-size: 1.8rem;
  text-align: center;
}

.additional-section--service-detail {
  padding-right: 0;
}

.service__call-to-action {
  display: flex;
  justify-content: space-evenly;
  padding: 4rem 0;
}

.service__call-content {
  font-size: 2rem;
  font-weight: bolder;
  width: 60%;
}

.form__contact-link {
  display: flex;
  justify-content: space-between;
  color: black;
  font-weight: bolder;
  padding: 0.5rem;
  background-color: var(--white);
  font-size: 2rem;
}

.form__contact-link:hover {
  background-color: var(--red);
  color: var(--white);
}

.form__contact-link:hover a {
  color: var(--white);
}

.form__contact-link a {
  color: var(--red);
  text-decoration: none;
}

.accordion-item--form {
  padding: 0;
}

.accordion-header--form {
  background-color: var(--red);
}

.accordion__icon--form::before {
  color: var(--white);
}

.accordion__content--form {
  padding: 0;
}

.accordion__item--open .accordion__content--form {
  padding: 0;
}

.accordion--form {
  width: 22rem;
  position: absolute;
  right: 0;
  top: -1rem;
  z-index: 99;
}

.service__form {
  position: relative;
}

.service__description-advantages ul li {
  position: relative;
  padding-left: 2rem;
}

.service__description-advantages ul li::before {
  content: "\f058";
  /* Código Unicode del icono "circle-check" de Font Awesome */
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0.2rem;
  top: 0.1rem;
  color: var(--red) !important;
}

.service__description {
  margin: 2rem 1rem;
  padding: 2rem 0;
}

@media screen and (max-width: 768px) {
  .accordion--form {
    position: initial;
    width: 100%;
  }

  .service__call-to-action {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
	
  .service__description {
    margin: 0;
    padding: 0;
    padding-bottom: 3rem;
  }

  .service__call-content {
    width: 100%;
    text-align: center;
  }

  .service__body {
    flex-direction: column;
  }

  .service__body>div {
    width: 100%;
  }

  .sevice__description-title>.title {
    text-align: center;
  }
}