body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #222;
}

.kachel-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.kachel-section h2 {
  font-size: 28px;
  color: #c29825;
  margin-bottom: 32px;
  text-align: center;
}

.kachel-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.kachel {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 24px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s ease;
}

.kachel:hover {
  transform: translateY(-5px);
}

.kachel i {
  font-size: 32px;
  color: #FFD700;
  margin-bottom: 16px;
}

.kachel h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.kachel p {
  font-size: 15px;
  line-height: 1.6;
}

.kachel a {
  color: #0077cc;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .kachel-grid {
	flex-direction: column;
	align-items: center;
  }
}

.trenner {
  height: 60px;
  background: linear-gradient(to right, #c29825, #f4f4f4);
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin: 40px 0;
}

.vorteile-grid {
  display: flex;
  flex-wrap: wrap;         /* Wichtig für Umbruch */
  justify-content: center;
  gap: 20px;
  padding: 0 10px;
}