#aboutus {
  background: #f9fbfd;
}

/* Label */
.about-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6c757d;
}

/* Title */
.about-title {
  font-weight: 800;
  font-size: 2.2rem;
  background: linear-gradient(45deg, #005baa, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.5rem;
}

/* Divider */
.about-divider {
  width: 80px;
  height: 4px;
  background: #005baa;
  border-radius: 10px;
  margin: 1rem 0 1.5rem 0;
}

/* Text */
.about-text p {
  text-align: justify;
  line-height: 1.8;
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Image hover effect */
.about-img-wrapper img {
  transition: all 0.4s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.03);
}

/* Button enhancement */
#aboutus .btn-primary {
  background: #005baa;
  border: none;
  transition: 0.3s ease;
}

#aboutus .btn-primary:hover {
  background: #003f7a;
  transform: translateY(-2px);
}

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

/* Large Desktop */
@media (max-width: 1400px) {
  .about-title {
    font-size: 2rem;
  }
}

/* Tablet */
@media (max-width: 992px) {
  #aboutus {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.6rem;
  }

  .about-text p {
    text-align: left; /* lebih nyaman dibaca di mobile */
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .about-label {
    font-size: 0.75rem;
  }

  .about-title {
    font-size: 1.4rem;
  }
}