body {
  margin: 0;
  font-size: 1.2rem;
  font-family: sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

footer a {
  text-decoration: underline;
}

footer a:hover {
  text-decoration: underline;
}

/* Seitenleiste mit vertikalem Titel */
.vertical-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  background-color: rgba(85, 184, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 2rem;
  color: #003366;
  letter-spacing: 2px;
}

/* Hauptinhalt */
.main-content {
  margin-left: 10%;
  padding: 4rem 5%;
  position: relative;
  z-index: 1;
}

/* Mobiler Titel */
.mobile-services-title {
  display: none;
  text-align: center;
  font-size: 2rem;
  color: #0065E6;
  margin-top: 1rem;
}

/* Titelbereich mit Linie */
.title-section {
  display: flex;
  align-items: center;
  gap: 5%;
  margin-bottom: 2rem;
}

.page-title {
  color: #0065E6;
  font-size: 2.5rem;
}

.title-line {
  flex-grow: 1;
  height: 2px;
  background-color: #55B2FF;
}

/* Textbox-Styling */
.textbox {
  background-color: rgba(85, 184, 255, 0.3);
  padding: 1.5rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(0, 101, 230, 0.3);
}

/* Einleitungsabschnitt */
.intro-section {
  margin: 3rem 0;
}

/* Liste von Leistungen mit Bild */
.services-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.services-container {
  flex: 1;
  min-width: 250px;
}

.service-list {
  list-style: disc;
  padding-left: 1.5rem;
}

.service-list li {
  margin-bottom: 0.75rem;
}

.image-container {
  flex: 0 0 40%;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.image-container img:hover {
  transform: scale(1.05);
}

/* Farbiger Bereich */
.fullwidth-section {
  width: 100%;
  height: 8rem;
}

.light-blue {
  background-color: #55B2FF;
}

/* Responsive Design */
@media (max-width: 48rem) {
  .vertical-sidebar {
    display: none;
  }

  .main-content {
    margin-left: 0;
  }

  .mobile-services-title {
    display: block;
  }

  .services-section {
    flex-direction: column;
    align-items: center;
  }

  .image-container {
    width: 100%;
  }

  .page-title {
    font-size: 2rem;
    color: #55B2FF;
  }
}
