/* === TENTANG KAMI FINAL === */

body.tentang-body {
  background: url("../images/tpa-bkl.jpg") no-repeat center/cover fixed;
  color: #fff;
}

.tentang-overlay {
  background: rgba(0, 0, 0, 0.65);
  min-height: 100vh;
  padding-top: 110px; /* 70px header + 40px jarak aman */
  padding-bottom: 40px;
}

.tentang-header {
  background: linear-gradient(90deg, #0057b7cc, #00a2ffcc);
  text-align: center;
  padding: 30px 15px 20px;
  margin-bottom: 20px;
}

.tentang-header h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.tentang-header p {
  font-size: 1rem;
  opacity: 0.9;
}

.section {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 15px;
}

/* Intro Tentang Kami */
.intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}

.intro img {
  flex: 0 0 220px;
  max-width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 10px;
}

.intro-content {
  flex: 1 1 400px;
}

.intro-content h2 {
  font-size: 1.6rem;
  color: #00baff;
  margin-bottom: 12px;
}

.intro-content p {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #f0f0f0;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.95);
  color: #222;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 102, 204, 0.2);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.25);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #0057b7;
}

.card p {
  font-size: 0.95rem;
  color: #444;
}

/* Tombol kembali */
.back-btn-container {
  text-align: center;
  margin-top: 30px;
}

.back-button {
  background: #0078d7;
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
  transition: 0.3s;
}

.back-button:hover {
  background: #0057b7;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .tentang-header h1 {
    font-size: 1.6rem;
  }
  .intro {
    flex-direction: column;
  }
  .intro img {
    max-width: 180px;
    flex: 0 0 180px;
  }
  .cards {
    flex-direction: column;
  }
  .card {
    flex: 1 1 100%;
  }
  .back-button {
    width: 80%;
  }
}
