.section.about-section {
  padding: 120px 20px;
  position: relative;
  margin-top: 120px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
}

/* Dekorasi oval kecil */
.about-decor {
  width: 280px;
  height: 90px;
  border-radius: 50px;
  background: #ddd url('/asset/img/wcu1.jpg') center center/cover no-repeat;
  position: absolute;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Posisi di atas oval besar agak kiri */
.about-decor.top {
  top: -120px;
  left: 260px;
}

/* Oval besar kiri */
.about-image {
  width: 300px;
  height: 400px;
  border-radius: 50% / 60%;
  background: url('/asset/img/galeri6.jpg') center/cover no-repeat;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Teks */
.about-text {
  max-width: 500px;
}

.about-text h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text h1 span {
  color: #000;
}

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

/* =================== RESPONSIVE =================== */

/* Tablet */
@media (max-width: 1024px) {
  .about-container {
    gap: 40px;
  }

  .about-image {
    width: 250px;
    height: 330px;
  }

  .about-decor {
    width: 220px;
    height: 70px;
  }

  .about-decor.top {
    top: -90px;
    left: 180px;
  }

  .about-text h1 {
    font-size: 32px;
  }

  .about-text p {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-image {
    width: 220px;
    height: 280px;
  }

  .about-decor {
    width: 180px;
    height: 60px;
  }

  .about-decor.top {
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-text {
    max-width: 100%;
  }

  .about-text h1 {
    font-size: 26px;
  }

  .about-text p {
    font-size: 18px;
  }
}

/* Extra Small (HP kecil) */
@media (max-width: 480px) {
  .section.about-section {
    padding: 80px 15px;
    margin-top: 60px;
  }

  .about-image {
    width: 180px;
    height: 230px;
  }

  .about-decor {
    width: 140px;
    height: 50px;
  }

  .about-decor.top {
    top: -50px;
  }

  .about-text h1 {
    font-size: 22px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
