:root {
  --primary: #2f6f5f;
  --secondary: #f4f7f6;
  --text: #1f2d2a;
  --accent: #e3f1ed;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: #ffffff;
}

/* ===== HEADER ===== */
header {
  background: var(--primary);
  text-align: center;
  padding: 50px 20px; /* iets compacter dan 60px */
}

.header-logo {
  height: 220px;
  width: auto;
  max-width: 90%;
}

/* ===== SECTIONS ===== */
section {
  padding: 30px 20px; /* van 40px → 30px, secties nog dichter */
}

.container {
  max-width: 900px;
  margin: auto;
}

h2 {
  color: var(--primary);
  margin-bottom: 16px; /* iets strakker dan 20px */
  font-size: 2rem;
}

p {
  margin-bottom: 10px; /* compacter dan 12px */
}

ul {
  margin-left: 20px;
  margin-bottom: 10px; /* compacter dan 12px */
}

ul li {
  margin-bottom: 5px; /* compacter dan 6px */
}

.highlight {
  background: var(--accent);
  padding: 18px; /* iets minder padding */
  border-left: 5px solid var(--primary);
  margin: 15px 0; /* compacter dan 20px */
  font-weight: bold;
}

.light { background: var(--secondary); }

/* ===== DOWNLOAD BUTTON ===== */
.download-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.download-btn:hover {
  background-color: #0B9370;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--primary);
  color: white;
}

.contact h2 { color: white; }

.contact a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  gap: 20px;
  margin: 15px 0; /* iets compacter dan 20px */
  align-items: center;
}

.social-icons a {
  font-size: 32px;
  color: white;
  text-decoration: none;
}

.social-icons a:hover {
  color: #1877f2;
}

.social-icons a.linkedin:hover {
  color: #0a66c2;
}

/* FOOTER */
footer {
    background: #2F6F5F;
    color: white;
    text-align: center;
    padding: 12px; /* iets compacter */
}
.kleine-tekst {
    font-size: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .header-logo { height: 140px; }
}

@media (max-width: 600px) {
  header { padding: 20px 15px; }
  .header-logo { height: 80px; }
  h2 { font-size: 1.6rem; }
}

.back-button {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin: 15px; /* compacter dan 20px */
  font-weight: bold;
  transition: background-color 0.3s;
}

.back-button:hover {
  background: #1f4d3f;
}

/* ===== PROFILE PAGE ===== */
.profile {
  text-align: center;
  margin-bottom: 30px; /* compacter dan 40px */
}

.profile img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px; /* iets compacter dan 20px */
  border: 4px solid var(--primary);
}

.bio {
  background: var(--secondary);
  padding: 25px; /* iets compacter dan 30px */
  border-radius: 8px;
  margin-bottom: 20px; /* van 30px → 20px */
}

.bio h3 {
  color: var(--primary);
  margin-bottom: 12px; /* compacter dan 15px */
}

.contact-info {
  background: var(--accent);
  padding: 18px; /* compacter */
  border-radius: 8px;
  text-align: center;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 8px; /* compacter dan 10px */
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px; /* iets compacter dan 30px */
  margin-top: 25px; /* compacter dan 30px */
}

.team-member {
  text-align: center;
  background: var(--secondary);
  padding: 18px; /* iets compacter dan 20px */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px; /* compacter dan 15px */
  border: 3px solid var(--primary);
}

.team-member h3 {
  color: var(--primary);
  margin-bottom: 8px; /* compacter dan 10px */
  font-size: 1.3rem;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin: 15px 0; /* compacter dan 20px */
}

.social-icons a {
  font-size: 28px;
  color: white;
  text-decoration: none;
}

.social-icons a:hover {
  color: #1877f2;
}