:root {
  --text-color--: #4e4e51;
  --main-bcg-color: #ebeae7;
  --secondary-color--: #037dc9;
  --hover-color--: #025e97;
  --focus-bcg-color--: #049cfb;
  --main-text-color--: #171718;
}

.details-service {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  margin-top: 60px;
}
.service-title {
  color: var(--secondary-color--);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-description {
  font-size: 20px;
}

.service-img{
  text-align: center;
}


.service-subtitle {
  margin-bottom: 10px;
  color: var(--main-text-color--);
}

.details-link-order {
  text-align: end;
  display: block;
  margin-bottom: 30px;
}
.details-btn-oreder {
  background-color: var(--secondary-color--);
  color: var(--main-bcg-color);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .details-service {
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .service-subtitle {
    font-size: 1.2rem;
    text-align: center;
  }

  .service-title {
    font-size: 1.4rem;
    text-align: center;
  }

  .service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0 15px;
    text-align: justify;
  }

  .service-img {
    max-height: 350px;

    width: 60%;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .details-service {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .service-title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 8px;
  }

  .service-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .service-description {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
    text-align: justify;
  }

  .service-img {
    width: 50%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .details-service {
    flex-direction: column;
    gap: 15px;
    margin-top: 0px;
    margin-bottom: 10px;
  }

  .service-title {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 10px;
  }

  .service-subtitle {
    font-size: 0.9rem;
    text-align: center;
  }

  .service-description {
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0 10px;
    text-align: justify;
  }

  .service-img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
    border-radius: 6px;
  }
}
