.elementor-3739 .elementor-element.elementor-element-04924b2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}#elementor-popup-modal-3739{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-3739 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-3739 .dialog-close-button{display:flex;}#elementor-popup-modal-3739 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS */#consultation-modal {
  max-width: 800px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
}

.btn-started {
  display: block;
  text-align: center;
  background-color: #49C1C7;
  color: #fff !important;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 15px;
  transition: .3s all;
}

.btn-started:hover {
    background: #000;
}

.text-center {
  text-align: center;
  margin-bottom: 20px;
}

.start-new {
  text-decoration: underline;
  color: black;
}

.list-services {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-item {
  display: flex;
  align-items: stretch;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
}

.service-name {
  flex: 0 0 200px;
  background-color: #49C1C7;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  border-radius: 5px;
    display: flex;           /* <== add flex */
  align-items: center;      /* center text vertically */
  justify-content: center;  /* center text horizontally */
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-item h3 {
    color: #fff;
    font-size: inherit;
    z-index: 1;
    position: relative
}

.service-name:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);

}

.service-description {
  flex: 1;
  padding-left: 15px;
  font-size: 14px;
  color: #333;
}

.service-action {
  flex: 0 0 120px;
  text-align: center;
    display: flex;
  align-items: center;
  justify-content: center;
}

.btn-start-now {
  display: inline-block;
  background-color: #49C1C7;
  color: #fff !important;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: .3s all;
  border-radius: 50px
}

.btn-start-now:hover {
    background: #000;
}

@media screen and (max-width: 767px) {
    .service-item {
        flex-direction: column;
        gap: 10px
    }
    .service-action {
        justify-content: flex-start;
        width: 100% !important;
        display: block;
        flex: auto;
    }
    .service-description {
        padding-left: 0;
    }
}/* End custom CSS */