body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0; padding: 0;
  background: #f9f9fb;
  color: #222;
}

.hero {
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  position: relative;
  min-height: 50vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.overlay {
  position: absolute; top:0; left:0; right:0; bottom:0;
  background: rgba(40,40,100,0.6);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px 40px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.cta {
  background: #00c0ff;
  color: #fff;
  padding: 11px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 10px #00c0ff66;
  transition: background .2s;
}
.cta:hover {
  background: #007bbf;
}

.main-nav {
  position: absolute; top: 20px; right: 40px; z-index: 3;
}
.main-nav ul {
  list-style: none; display: flex; gap: 32px; margin: 0; padding: 0;
}
.main-nav a {
  color: #fff; text-decoration: none; font-weight: 500; font-size: 1rem;
  transition: color .2s;
}
.main-nav a:hover { color: #00c0ff; }

.rubrik {
  background: #fff; margin: 40px auto 0; padding: 40px 20px;
  max-width: 700px; border-radius: 18px; box-shadow: 0 4px 32px #dee2e6cc;
  text-align: center;
}
.rubrik h2 { font-size: 1.7rem; margin-bottom: 1rem; color: #00c0ff; }

.majalah-terbaru {
  background: linear-gradient(90deg, #00c0ff 20%, #e0f7fa 100%);
  margin: 40px auto 0; padding: 40px 20px;
  max-width: 700px; border-radius: 18px; box-shadow: 0 4px 32px #dee2e6cc;
}
.majalah-terbaru h2 {
  text-align: center; color: #003366; font-size: 1.7rem;
}
.card {
  background: #fff; border-radius: 16px; padding: 28px 16px; box-shadow: 0 2px 12px #00c0ff44;
  margin-top: 18px;
}
.card h3 { color: #00c0ff; font-size: 1.3rem; margin-bottom: 10px; }
.card ul { margin: 0 0 10px 0; padding: 0 0 0 18px; }
.read-link {
  display: inline-block; margin-top: 12px; background: #00c0ff; color: #fff;
  padding: 8px 24px; border-radius: 100px; text-decoration: none; font-weight: 700;
  transition: background .2s;
}
.read-link:hover { background: #007bbf; }

.testimoni {
  background: #f1f5fa; margin: 40px auto 0; padding: 40px 20px;
  max-width: 1000px; border-radius: 18px; box-shadow: 0 4px 32px #dee2e6cc;
}
.testi-list {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center;
}
.testi {
  background: #fff; border-radius: 16px; padding: 22px 20px; width: 270px;
  box-shadow: 0 2px 12px #00c0ff22;
  display: flex; flex-direction: column; align-items: center;
}
.testi-profile {
  display: flex; flex-direction: column; align-items: center; margin-bottom: 12px;
}
.testi-profile img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin-bottom: 7px;
}
.testi-profile h3 { margin: 0; font-size: 1.07rem; }
.testi-profile span { font-size: 0.95rem; color: #00c0ff; }
.testi blockquote {
  font-size: 1rem; color: #333; margin: 0; text-align: center;
  border-left: 3px solid #00c0ff; padding-left: 10px;
}

.kontak {
  background: #fff; margin: 40px auto 0; padding: 40px 20px;
  max-width: 700px; border-radius: 18px; box-shadow: 0 4px 32px #dee2e6cc;
  text-align: center;
}
.kontak h2 { color: #00c0ff; }
.email-link {
  font-weight: 700; color: #007bbf; text-decoration: none; display: block; margin: 10px 0 18px 0;
}
.sosmed {
  display: flex; gap: 18px; justify-content: center; margin-top: 8px;
}
.sosmed img {
  width: 32px; height: 32px; transition: transform .2s;
}
.sosmed a:hover img { transform: scale(1.12); }

footer {
  background: #003366; color: #fff; text-align: center; padding: 18px 0; margin-top: 50px;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

@media (max-width: 800px) {
  .testi-list { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .main-nav { position: static; }
  .main-nav ul { flex-direction: column; gap: 12px; }
  .hero-content { padding: 50px 10px 20px; }
  .rubrik, .majalah-terbaru, .kontak, .testimoni {
    padding: 24px 8px;
    max-width: 98vw;
  }
  .card, .testi {
    padding: 18px 8px;
    width: 90vw;
  }
}