body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #2c3e50;
}

header {
  background: linear-gradient(90deg, #1e90ff, #ff7f50);
  color: white;
  text-align: center;
  padding: 3rem 0;
  position: relative;
}

header h1 {
  font-size: 3.5rem;
  margin: 0;
  font-weight: 700;
}

header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  font-weight: 400;
}

.wave {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url("https://www.svgrepo.com/show/136443/wave.svg") repeat-x;
}

.container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 1rem;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2.5rem;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.pricing-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 320px;
  width: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  border-color: #1e90ff;
}

.pricing-card h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: #1e90ff;
}

.pricing-card ul {
  text-align: left;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

/* Tambahan: beri jarak antara ikon dan teks list agar tidak dempet */
.pricing-card ul li i {
  margin-right: 8px;
}

.pricing-card ul li {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #7f8c8d;
}

.pricing-card .price {
  font-size: 2rem;
  color: #ff7f50;
  font-weight: bold;
  margin: 1.5rem 0;
}

.cta button {
  background-color: #1e90ff;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s;
}

.cta button:hover {
  background-color: #ff7f50;
  transform: scale(1.05);
}

footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  font-size: 1rem;
}

.payment-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.payment-logo {
  width: 90px; /* Meningkatkan ukuran logo */
  height: 90px; /* Meningkatkan ukuran logo */
  object-fit: contain;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap; /* Membuat logo membungkus ke baris berikutnya */
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  animation: slideIn 1s ease-in-out; /* Menambahkan animasi geser */
}

.partner-logo {
  width: 120px; /* Ukuran logo partner */
  height: auto; /* Menjaga rasio aspek */
  object-fit: contain;
}

/* Animasi geser */
@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }

  .pricing-table {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 90%;
  }

  header h1 {
    font-size: 3rem;
  }

  header p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .pricing-card h2 {
    font-size: 1.6rem;
  }

  .partner-logo {
    width: 100px; /* Ukuran logo partner lebih kecil di layar lebih kecil */
  }
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }

  header p {
    font-size: 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card h2 {
    font-size: 1.4rem;
  }

  .cta button {
    font-size: 1rem;
    padding: 0.7rem 1.8rem;
  }

  footer {
    font-size: 0.9rem;
  }

  .partner-logo {
    width: 80px; /* Ukuran logo partner lebih kecil di layar lebih kecil */
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 0.9rem;
  }

  .pricing-card {
    width: 100%;
    padding: 1rem;
  }

  .pricing-card h2 {
    font-size: 1.3rem;
  }

  .cta button {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }

  footer {
    font-size: 0.8rem;
  }

  .partner-logo {
    width: 70px; /* Ukuran logo partner lebih kecil di layar lebih kecil */
  }
}
