* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f7f6f2;
  color: #222;
  line-height: 1.6;
}

/* HEADER */
.header {
  background: #0f3c2f;
  padding: 18px 0;
}

.header .container {
  max-width: 1150px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: #f4c089;
}

nav a {
  color: #fff;
  margin-left: 22px;
  text-decoration: none;
  font-size: 15px;
}

/* -------------------------------------------------- */
/* HERO – Noodpakket afbeelding + donkere overlay     */
/* -------------------------------------------------- */

.hero {
  position: relative;
  height: 260px;
  background: url('https://images.unsplash.com/photo-1585325701954-c8f4a3e0f3e6')
    center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Donkere overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 36px;
  color: #fff;
}

.hero p {
  color: #fff;
  font-size: 17px;
  margin-top: 10px;
}

/* -------------------------------------------------- */
/* PAKKETTEN                                           */
/* -------------------------------------------------- */

.pakketten {
  padding: 50px 20px;
  text-align: center;
}

.pakket-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.pakket-card {
  background: #fff;
  padding: 30px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.pakket-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0f3c2f;
}

.prijs {
  font-size: 24px;
  margin-bottom: 15px;
  color: #f4a949;
  font-weight: bold;
}

.pakket-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.pakket-card li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

/* -------------------------------------------------- */
/* BUTTONS                                             */
/* -------------------------------------------------- */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background: #0f3c2f;
  color: #fff;
}

.btn-secondary {
  background: #f4c089;
  color: #0f3c2f;
}

/* -------------------------------------------------- */
/* VOORDELEN                                           */
/* -------------------------------------------------- */

.voordelen {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.voordelen-grid {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 30px;
  flex-wrap: wrap;
}

.voordeel-card {
  background: #f7f6f2;
  padding: 25px;
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* -------------------------------------------------- */
/* FOOTER                                              */
/* -------------------------------------------------- */

.footer {
  background: #0f3c2f;
  padding: 30px;
  text-align: center;
  color: #fff;
  margin-top: 50px;
}
