/* =============== RESET =============== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* =============== CONTAINER =============== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =============== HEADER =============== */
header {
  background-color: white;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  margin-right: 15px;
}

.logo h1 {
  font-size: 24px;
  color: #357df9;
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  padding: 5px 0;
  transition: color 0.3s;
}

nav ul.nav-links li a:hover,
nav ul.nav-links li a.active {
  color: #357df9;
  border-bottom: 2px solid #357df9;
}

/* =============== OVER ONS SECTIE =============== */
.about-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-section h2 {
  font-size: 2rem;
  color: #357df9;
  margin-bottom: 25px;
  text-align: center;
}

.about-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

/* =============== FOOTER =============== */
footer {
  text-align: center;
  padding: 25px 0;
  background-color: white;
  border-top: 1px solid #ddd;
  color: #777;
  font-size: 14px;
}
