* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  background-color: #f2f2f2;
  line-height: 1.6;
}

/* Header */
.header {
  background: #111;
  color: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.header a:hover {
  opacity: 0.7;
}

/* Hero */
.hero {
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  padding: 140px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero * {
  position: relative;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
}

.button {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: #c00;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
}

/* Sections */
.section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

.section h2 {
  margin-bottom: 30px;
  font-size: 32px;
}

.section p {
  margin-bottom: 20px;
}

.dark {
  background: #222;
  color: #fff;
}

/* Leistungen Kacheln */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

/* Google Maps */
.map-container {
  margin-top: 25px;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.datenschutz {
  font-size: 12px;
  color: #aaa;
  margin-top: 5px;
}

/* Footer */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 25px;
}
