:root {
  --font: "Geist", "Geist Placeholder", sans-serif;
  --bg-dark: #111111;
  --text5: #ffffff;
  --accent: #e63946;
  --frame: rgba(255, 255, 255, 0.1);
}

.about-tertanda {
  background-color: var(--bg-dark);
  padding: 80px 40px;
  text-align: center;
  font-family: var(--font);
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text5);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.about-title .dot {
  color: var(--accent);
  margin-left: 4px;
}

.about-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border: 1px dotted var(--frame);
  border-radius: 16px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 0 1px var(--frame);
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  color: var(--muted);
  text-align: left;
  width: 100%;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 20px;
}

.about-image {
  width: 100%;
  height: 60vh;
  background-image: url('../images/tangan.png');
  background-size: contain;         /* ✅ Menampilkan seluruh gambar */
  background-repeat: no-repeat;     /* ✅ Hindari pengulangan */
  background-position: top center;  /* ✅ Fokus pada bagian atas */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Tablet View */
@media (max-width: 1024px) {
  .about-tertanda {
    padding: 60px 30px;
  }

  .about-title {
    font-size: 1.9rem;
  }

  .about-image {
    height: 320px;
  }

  .about-text {
    text-align: center;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .about-tertanda {
    padding: 50px 20px;
  }

  .about-title {
    font-size: 1.7rem;
  }

  .about-box {
    padding: 20px;
    gap: 30px;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-icon {
    margin: 0 auto;
  }

  .about-image {
    height: 260px;
  }
}