.pppe-section {
  padding: 90px 0;
  background: #fff;
}

.pppe-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.pppe-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 90px;
}

.pppe-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.pppe-item.reverse .pppe-text { order: 2; }
.pppe-item.reverse .pppe-image { order: 1; }

.pppe-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pppe-text h4 {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 700;
}

.pppe-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.pppe-text ul {
  padding-left: 18px;
  margin-top: 10px;
}

.pppe-text li {
  margin-bottom: 6px;
  font-size: 15px;
}

.pppe-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

@media (max-width: 992px) {
  .pppe-item,
  .pppe-item.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pppe-item.reverse .pppe-text,
  .pppe-item.reverse .pppe-image {
    order: unset;
  }

  .pppe-title {
    font-size: 34px;
  }
}
/* POPUP OVERLAY */
.image-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

/* AKTİF */
.image-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* POPUP IMAGE */
.image-popup-content img {
  max-width: 90vw;
  max-height: 90vh;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,.4);
}

/* KAPATMA */
.image-popup-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
}
