/* CSS Khusus untuk Halaman Tentang */
.main-content {
  padding: 50px 20px;
  background-color: #f8f9fa;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid var(--primary-color);
}

.about-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.bio-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-btn.telegram {
  background-color: #0088cc;
}

.social-btn.whatsapp {
  background-color: #25d366;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: black;
  /* Efek hover yang Anda minta */
}
