body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 2rem;
}

h1, h2, h3 {
  color: #000000;
}

a {
  text-decoration: none;
  color: #0077cc;
}

.button {
  background-color: #ffb300;
  color: #fff;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 50px;
  margin-top: 1rem;
  font-weight: 600;
  transition: background 0.3s ease;
}
.button:hover {
  background-color: #218838;
}

/* Hero Section */
.hero {
  background-color: #3d81c5;
  padding: 4rem 0;
  border-bottom: 1px solid #ddd;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hero-text {
  flex: 1 1 50%;
  color: #fff;
}
.hero-image {
  flex: 1 1 40%;
  text-align: center;
}
.hero-image img {
  max-width: 300px;
}

/* Content Section */
.content ul {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
}
.content ul li {
  margin-bottom: 0.5rem;
}

/* Paket Section */
.paket-section {
  background: #fff;
  padding: 4rem 0;
}
.paket-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.paket-box {
  background: #f3f3f3;
  padding: 1.5rem;
  border-radius: 8px;
  flex: 1 1 calc(25% - 1rem);
  text-align: center;
}
.paket-box h3 {
  margin-bottom: 0.5rem;
}

/* Testimoni */
.testimoni-section {
  background: #f0f0f0;
  padding: 4rem 0;
}
.testimoni-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.testimoni-card {
  background: white;
  padding: 1.5rem;
  border-left: 4px solid #ffb300;
  flex: 1 1 30%;
}

/* CTA Section */
.cta-final {
  background-color: #3d81c5;
  color: white;
  padding: 3rem 0;
  text-align: center;
}
.cta-final .button {
  background-color: white;
  color: #ffb300;
}
.cta-final .button:hover {
  background-color: #f1f1f1;
}

/* Footer */
.footer {
  background-color: #222;
  color: white;
  padding: 2rem 0;
  text-align: center;
}
.footer img {
  max-width: 120px;
  margin-bottom: 1rem;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  width: 100%;
}
[class^="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Column Widths */
.col-2  { flex: 0 0 16.666%; max-width: 16.666%; }
.col-4  { flex: 0 0 33.333%; max-width: 33.333%; }
.col-6  { flex: 0 0 50%;      max-width: 50%; }
.col-8  { flex: 0 0 66.666%; max-width: 66.666%; }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-12 { flex: 0 0 100%;     max-width: 100%; }

/* Responsive Breakpoints */
@media screen and (max-width: 768px) {
  .col-2,
  .col-4,
  .col-6,
  .col-8,
  .col-10,
  .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.list-silang {
      list-style: none; /* Hilangkan bullet default */
      padding-left: 1.5em;
    }

    .list-silang li {
      position: relative;
      margin-bottom: 0.5em;
      padding-left: 2.2em;
    }

    .list-silang li::before {
      content: "❌";
      color: red;
      font-size: 1em;
      position: absolute;
      left: 0;
      top: 0;
    }
    
 .list-centang {
      list-style: none; /* Hilangkan bullet default */
      padding-left: 1.5em;
    }

    .list-centang li {
      position: relative;
      margin-bottom: 0.5em;
      padding-left: 2.2em;
    }

    .list-centang li::before {
      content: "✅";
      color: green;
      font-size: 1em;
      position: absolute;
      left: 0;
      top: 0;
    }
    
    
.faq-accordion details[open] summary {
  color: #ffb300;
}
.faq-accordion summary::after {
  content: "➕";
  float: right;
  font-size: 1.2em;
}
.faq-accordion details[open] summary::after {
  content: "➖";
}

.paket-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}


blockquote {
  font-style: italic;
  color: #555;
  border-left: 5px solid #ff7f50; /* Coral, bisa diganti */
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  position: relative;
}

blockquote::before {
  content: "“";
  font-size: 4rem;
  color: #ff7f50;
  position: absolute;
  top: -10px;
  left: 10px;
  line-height: 1;
  opacity: 0.2;
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #888;
  text-align: right;
}
