.tentang {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
  color: #fff;
}

.tentang .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* desktop: teks + gambar */
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0;
}

/* Title */
.tentang h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Gambar */
.tentang img {
  max-width: 400px;   /* batasi di desktop */
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .tentang .wrap {
    display: block !important;      /* paksa 1 kolom */
    text-align: center !important;
  }

  .tentang .wrap > div {
    margin-bottom: 20px !important; /* jarak antar elemen */
  }

  .tentang img {
    max-width: 90% !important;      /* jangan sampai full */
    width: auto !important;         /* biar proporsional */
    margin: 0 auto !important;      /* center */
    display: block !important;
  }
}

    .sejarah {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      margin-top: 60px;
    }

    .sejarah img {
      width: 100%;
      border-radius: 8px;
      box-shadow: var(--shadow);
    }

    .sejarah-text h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .sambutan-title {
      text-align: center;
      font-size: 2rem;
      margin-top: 80px;
    }
    
