* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f3f5f0;
  color: #2e2e2e;
}

/* HEADER */
header {
  background: #2f4f3a;
  color: #fff;
  padding: 30px 20px;   /* ⬅ DARI 20px */
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
  font-size: 2.2rem;    /* ⬅ JUDUL LEBIH BESAR */
}

/* MENU */
nav a {
  color: #e8f0e6;
  margin: 0 14px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;    /* ⬅ MENU LEBIH BESAR */
}

nav a:hover {
  text-decoration: underline;
}


/* HERO */
.hero {
  background: url("images/hero.jpg") center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,.6);
}

.hero.kecil {
  min-height: 45vh;
}

.hero h2 {
  font-size: 2.6rem;
}

/* CONTENT */
.content {
  padding: 80px 20px;
}

.card {
  background: #fff;
  max-width: 720px;
  margin: auto;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  text-align: center;
}

.card p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* IMAGE */
.img-kecil {
  width: 140px;
  margin-bottom: 20px;
  border-radius: 12px;
}

/* FOOTER */
footer {
  background: #2f4f3a;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 0.9rem;
}


