.title {
  background-image: url('../images/tuinen-achtergrond.jpg');
}

.dienst-intro {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  text-align: center;
}

.dienst-werkzaamheden {
  max-width: 1250px;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: center;
}

.dienst-werkzaamheden h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2c3335;
}

.werkzaamheden-list {
  display: flex;
  justify-content: center;
  gap: 60px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.werkzaamheden-list li {
  font-size: 1.1rem;
  color: #444;
  flex: 1 1 200px;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.werkzaamheden-list li i.fa-circle-check {
  color: #2c3335;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.dienst-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.dienst-box {
  flex: 1 1 300px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.dienst-box:hover {
  transform: translateY(-5px);
}

.dienst-naam {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
}

.dienst-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.dienst-content img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.dienst-tekst {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dienst-tekst p {
  margin-bottom: 1em;
  color: #555;
  font-size: 1rem;
}

.dienst-button {
  background-color: #2c3335;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

.dienst-button:hover {
  background-color: #555555;
}

.dienst-aanpak {
  max-width: 1250px;
  margin: 40px auto 0;
  padding: 0 20px;
  text-align: center;
}

.dienst-aanpak h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.aanpak-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.aanpak-item {
  flex: 1 1 300px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.aanpak-item:hover {
  transform: translateY(-5px);
}

.aanpak-item img {
  width: 100%;
  max-width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.aanpak-item p {
  font-size: 1.05rem;
  color: #555;
}

@media (max-width: 768px) {
  .dienst-content {
    flex-direction: column;
    align-items: center;
  }

  .dienst-content img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .aanpak-grid {
    flex-direction: column;
  }

  .aanpak-item {
    width: 100%;
    max-width: none;
  }
}


