/* Grundlayout */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

/* Header */
header {
  display: flex;
  flex-wrap: wrap;
  background: url("../Bilder/kopf-rechts.jpg") repeat-x;
}
header img {
  height: 160px;
  object-fit: cover;
}
.header-spacer {
  flex: 1;
}

/* Hauptlayout */
.content {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.sidebar {
  flex: 0 0 240px;
}
.sidebar img {
  width: 100%;
  height: auto;
  display: block;
}
main {
  flex: 1;
  padding: 1rem;
  max-width: 600px;
}

/* Kontaktbereich */
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #555;
}

/* Leistungen */
.services {
  list-style: none;
  padding: 0;
}
.services li {
  margin-bottom: 1rem;
  padding-left: 25px;
  background: url("../Bilder/punkt.jpg") no-repeat left top;
  font-weight: bold;
}
.services li ul {
  font-weight: normal;
  margin-top: 0.3rem;
  margin-left: 1.2rem;
  list-style: disc;
}

/* Bilderleiste */
.bilderleiste {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
}

/* Footer */
footer {
  background: #fe0000;
  padding: 2rem;
  text-align: center;
  color: #fff;
  margin-top: 2rem;
}
/* Links global */
a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}