/* Basisopmaak */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: white;
  padding: 15px 30px;
}

header .logo {
  font-weight: bold;
  font-size: 18px;
}

header nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

header nav a.active,
header nav a:hover {
  color: #fdd835; /* geel accent */
}

/* Hero */
.hero {
  background: url('hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #c40000;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.btn:hover {
  background: #a00000;
}

/* Services */
.services {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 50px 20px;
  background: #f5f5f5;
}

.services .service {
  width: 30%;
}

/* USP */
.usp {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
}

.usp ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
}

.usp li {
  font-weight: bold;
}

/* CTA-balk */
.cta-bar {
  background: #c40000;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.cta-bar .btn {
  background: #fff;
  color: #c40000;
}

.cta-bar .btn:hover {
  background: #fdd835;
  color: #111;
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

footer a {
  color: #fdd835;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
