/* ============================= */
/* Algemeen / Basis             */
/* ============================= */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #f5f5f5;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ============================= */
/* Header                        */
/* ============================= */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #2c2c2c;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #1a73e8;
}

.cta-button {
  background-color: #1a73e8;
  color: white;
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #155bb5;
}

/* ============================= */
/* Hero / Intro                 */
/* ============================= */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px;
  background-color: #f5f5f5;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
}

/* ============================= */
/* Over mij                      */
/* ============================= */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 80px 0;
  background-color: #ffffff;
}

.about img {
  max-width: 300px;
  border-radius: 10px;
  object-fit: cover;
}

.about-text {
  flex: 1;
  min-width: 250px;
}

.about-text h2 {
  margin-bottom: 20px;
  color: #1a73e8;
}

/* ============================= */
/* Diensten                      */
/* ============================= */
.services {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #1a73e8;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-item {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-item h3 {
  margin-bottom: 15px;
  color: #1a73e8;
}

/* Extra knoppen rechtsgebieden */
.service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.service-btn {
  background-color: #1a73e8;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
}

.service-btn:hover {
  background-color: #155bb5;
}

/* ============================= */
/* Contact                       */
/* ============================= */
.contact {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1a73e8;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input, .contact-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1em;
}

.contact-form button {
  background-color: #1a73e8;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #155bb5;
}

.contact-info {
  text-align: center;
  margin-top: 20px;
  font-size: 0.95em;
  color: #555;
}

/* ============================= */
/* Footer                        */
/* ============================= */
footer {
  background-color: #2c2c2c;
  color: white;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9em;
}

footer a {
  color: #1a73e8;
  margin: 0 5px;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ============================= */
/* Mobiel / Responsive           */
/* ============================= */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about img {
    margin-bottom: 20px;
  }

  .service-btn {
    flex: 1 1 45%;
    margin-bottom: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }
}

✅