/* Global */
body {
  background-color: #f8fbff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  padding: 15px 0;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 20px;
  color: #0077b6;
}

/* Navbar Buttons */
.navbar .btn {
  border-radius: 50px;
  padding: 6px 18px;
  font-weight: 600;
  margin-left: 8px;
}

/* Hero Section */
.hero {
  background: #0096c7;
  color: white;
  padding: 80px 20px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.hero h1 {
  font-weight: 700;
  font-size: 2rem;
}

.hero p {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Section Heading */
h2 {
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 20px;
}

/* Tentang Kami */
.container p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Card Keunggulan */
.card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

/* Form */
form {
  border-radius: 15px;
}

form .btn {
  border-radius: 8px;
  font-weight: 600;
}

/* Testimoni */
.container .row p {
  font-size: 0.95rem;
}

/* Footer */
footer {
  font-size: 0.9rem;
  margin-top: 50px;
}
