body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  background: #fff0f6; /* pink muda pastel */
  color: #333;
}

/* Header */
.header {
  background: #e91e63; /* pink cerah */
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  color: #ffeb3b; /* kuning pastel untuk hover */
}

/* Hero */
.hero {
  background: linear-gradient(to right, #f48fb1, #ec407a);
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background: #fff;
  color: #e91e63;
}

.btn-secondary {
  background: #d81b60;
  color: #fff;
}

/* Sections */
.section {
  padding: 50px 20px;
  text-align: center;
}

.services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background: #fce4ec; /* pink pastel */
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Testimoni */
.testimoni blockquote {
  background: #f8bbd0;
  padding: 20px;
  border-left: 5px solid #e91e63;
  margin: 20px auto;
  max-width: 600px;
  font-style: italic;
  color: #222;
}

/* CTA */
.cta {
  background: #e91e63;
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}

/* Footer */
.footer {
  background: #d81b60;
  color: #fff;
  text-align: center;
  padding: 15px;
}
