.featured-who { margin-top: -40px; margin-bottom: 20px; }


.who-band {
  background: rgba(130, 200, 230, 0.14); /* %12 opak turuncu */
  padding: 36px 20px;                  /* yÃ¼kseklik kÃ¼Ã§Ã¼ltÃ¼ldÃ¼ */
  border-radius: 14px;
}
@media (max-width: 768px) {
  .who-band h2 { font-size: 26px; }
  .who-desc { font-size: 15px; }
  .who-btn { width: 100%; }
}

.who-band {
  position: relative;
}

.who-band h2 {
  color: #1f1f1f;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.who-desc {
  color: #444;
  font-size: 17px;
  max-width: 760px;
  margin-top:0px;
  margin-bottom:20px;
  margin-left:auto;
  margin-right:auto;
  
  
  line-height: 1.6;
}

.who-btn {
  display: inline-block;
  background: #82C8E6;
  color: #fff;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.who-btn:hover {
  background: #5a9fb8;
  color: #fff;
  transform: translateY(-2px);
}

.process-section {
  padding: 70px 0;
  background: #fff;
}

.section-title h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all .3s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-6px);
}

.process-card .step {
  font-size: 42px;
  font-weight: 700;
  color: rgba(130,200,230,.28);
  position: absolute;
  top: 18px;
  right: 22px;
}

.process-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Mobil */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-section {
  padding: 70px 0;
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
min-height: 220px; display:flex; flex-direction:column;
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 10px;
}

.comment {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 14px;
}

.author {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-top:auto;
}

/* Mobil */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.section-pad { padding: 70px 0; }
.section-pad-sm { padding: 45px 0; }
#featured.featured { padding-bottom: 30px; }