<style>
    /* Modern genel stil güncellemeleri */
    body {
      font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
      background: #f7fafd;
      color: #222;
    }
    .choose-box, .service-item, .process-item, .blog-item {
      box-shadow: 0 8px 32px rgba(30, 138, 138, 0.08);
      border-radius: 16px;
      background: #fff;
      transition: box-shadow 0.3s, transform 0.3s;
      border: none;
    }
    .choose-box:hover, .service-item:hover, .process-item:hover, .blog-item:hover {
      box-shadow: 0 16px 40px rgba(30, 138, 138, 0.18);
      transform: translateY(-6px) scale(1.03);
    }
    .tj-primary-btn {
      background: linear-gradient(90deg, #1e8a8a 0%, #3ed2c7 100%);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 12px 32px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
      box-shadow: 0 4px 16px rgba(30, 138, 138, 0.10);
    }
    .tj-primary-btn:hover {
      background: linear-gradient(90deg, #3ed2c7 0%, #1e8a8a 100%);
      color: #fff;
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 8px 24px rgba(30, 138, 138, 0.18);
    }
    .service-item.style-4 {
      padding: 32px 24px 28px 24px;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 18px;
    }
    .service-icon {
      font-size: 2.5rem;
      color: #1e8a8a;
      margin-bottom: 10px;
    }
    .service-content .title {
      font-size: 1.3rem;
      /*font-weight: 700;*/
      margin-bottom: 8px;
      color: #1e8a8a;
    }
    .service-content .desc {
      font-size: 1rem;
      color: #444;
      margin-bottom: 12px;
    }
    .service-content .text-btn {
      color: #1e8a8a;
      font-weight: 600;
      font-size: 1rem;
      transition: color 0.2s;
    }
    .service-content .text-btn:hover {
      color: #3ed2c7;
    }
    .working-process-area {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 24px;
    }
    .process-item {
      width: 19%;
      min-width: 220px;
      background: #fff;
      padding: 28px 18px 22px 18px;
      border-radius: 14px;
      box-shadow: 0 2px 12px rgba(30, 138, 138, 0.07);
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: 0.3s;
      position: relative;
      overflow: hidden;
    }
    .process-step span {
      display: inline-block;
      background: linear-gradient(90deg, #1e8a8a 0%, #3ed2c7 100%);
      color: #fff;
      font-size: 1.3rem;
      font-weight: 700;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      line-height: 44px;
      text-align: center;
      margin-bottom: 12px;
      box-shadow: 0 2px 8px rgba(30, 138, 138, 0.10);
    }
    .process-content .title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #1e8a8a;
      margin-bottom: 6px;
    }
    .process-content .desc {
      font-size: 0.98rem;
      color: #444;
      text-align: center;
    }
    /* Mobil uyumlu düzenlemeler */
    @media only screen and (max-width: 992px) {
      .service-item.style-4, .process-item {
        min-width: 90%;
        width: 100%;
        margin-bottom: 18px;
      }
      .working-process-area {
        flex-direction: column;
        align-items: center;
        gap: 18px;
      }
    }
    @media only screen and (max-width: 768px) {
      .service-item.style-4, .process-item {
        min-width: 98%;
        width: 100%;
        padding: 20px 10px;
      }
      .working-process-area {
        gap: 12px;
      }
    }
    /* Hizmetler kartları için boyut eşitleme ve küçültme */
    .service-item.style-4 {
      min-height: 260px !important;
      max-width: 100%;
      padding: 22px 14px 18px 14px;
      font-size: 0.98rem;
    }
    @media (max-width: 992px) {
      .service-item.style-4 {
        min-height: 220px !important;
        padding: 16px 8px;
      }
    }
    /* Çalışma Süreci kutuları için ortalama ve numara stili */
.working-process-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  min-width: 180px;
  flex: 1 1 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30, 138, 138, 0.07);
  padding: 28px 18px 22px 18px;
  margin: 0 8px;
}
.process-step {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #1e8a8a 0%, #3ed2c7 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(30, 138, 138, 0.10);
}
.process-arrow {
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #1e8a8a;
  z-index: 2;
}
@media (max-width: 1200px) {
  .process-item {
    min-width: 160px;
    padding: 18px 8px 16px 8px;
  }
  .process-arrow {
    right: -20px;
    font-size: 1.5rem;
  }
}
@media (max-width: 992px) {
  .working-process-area {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .process-item {
    min-width: 90%;
    width: 100%;
    margin: 0;
  }
  .process-arrow {
    position: static;
    display: block;
    margin: 8px auto 0 auto;
    transform: none;
  }
}
.service-item.style-4 {
  min-height: 170px !important;
  max-width: 100%;
  padding: 10px 8px 12px 8px;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.service-icon {
  font-size: 2.5rem;
  color: #1e8a8a;
  margin-bottom: 15px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}
.service-content .title {
  margin-bottom: 0px;
}
.service-content .desc {
  margin-bottom: 6px;
}
@media (max-width: 992px) {
  .service-item.style-4 {
    min-height: 140px !important;
    padding: 12px 6px;
  }
}
/* Adımlar (Çalışma Süreci) için yeni, çakışmasız tasarım */
.steps-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.step-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30,138,138,0.08);
  min-width: 180px;
  max-width: 220px;
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}
.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(90deg, #1e8a8a 0%, #3ed2c7 100%);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(30,138,138,0.10);
}
.step-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1e8a8a;
  margin-bottom: 4px;
}
.step-desc {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 0;
}
.step-arrow {
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
  color: #1e8a8a;
  z-index: 2;
}
@media (max-width: 1200px) {
  .step-card {
    min-width: 140px;
    max-width: 180px;
    padding: 14px 6px 12px 6px;
  }
  .step-arrow {
    right: -18px;
    font-size: 1.2rem;
  }
}
@media (max-width: 992px) {
  .steps-area {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .step-card {
    min-width: 90%;
    max-width: 98%;
    margin: 0;
  }
  .step-arrow {
    position: static;
    display: block;
    margin: 8px auto 0 auto;
    transform: none;
  }
}
.choose-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.choose-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #1e8a8a;
  margin-bottom: 4px;
}
.choose-content .title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e8a8a;
  margin-bottom: 2px;
}
.choose-content .desc {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 0;
}

</style>