body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.hero {
  background: linear-gradient(to right, #b70000, #ff4d4d);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.cta-button {
  background-color: white;
  color: #b70000;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  display: inline-block;
}

.section {
  padding: 60px 20px;
}

.section.light {
  background-color: #f0f0f0;
}

.diensten-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}