
/* İŞ SÜRECİ VE MÜHENDİSLİK YAKLAŞIMI */

.surec-wrapper {
  display: flex;
  max-width: 1400px;
  margin: 60px auto;
  margin-top: 150px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex-wrap: wrap;
}

.surec-sol-kutu {
  flex: 0 0 340px;
  background: linear-gradient(to bottom right, #1e6e5c, #15705c);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  padding: 60px 30px;
}

.surec-sol-icerik {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.surec-sol-icerik h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.surec-sol-icerik p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
}

.surec-sag-icerik {
  flex: 1;
  padding: 60px 40px;
  box-sizing: border-box;
}

.surec-sag-icerik h1 {
  font-size: 36px;
  color: #1e6e5c;
  margin-bottom: 24px;
}

.surec-sag-icerik ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 30px;
}

.surec-sag-icerik ul li {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.surec-sag-icerik ul li i {
  color: #1e6e5c;
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 18px;
}

.surec-sag-icerik p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .surec-wrapper {
    flex-direction: column;
  }

  .surec-sol-kutu {
    clip-path: none;
    border-radius: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .surec-sag-icerik {
    padding: 40px 24px;
  }

  .surec-sag-icerik h1 {
    text-align: center;
  }
}