.ueberuns-content {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* Boxen für jede Sektion */
.section-box {
  background-color: #fff;          /* weiße Box für Kontrast */
  border-radius: 12px;             /* runde Ecken */
  padding: 35px 25px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.section-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Überschriften */
.section-box h3 {
  color: #b30000;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

/* Text innerhalb der Box */
.section-box p {
  font-size: 17px;
  margin: 0 auto;
  max-width: 720px;
  text-align: justify;
  text-justify: inter-word;
}

/* Links */
.section-box a {
  color: #b30000;
  text-decoration: none;
  font-weight: 600;
}

.section-box a:hover {
  text-decoration: underline;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .section-box {
    padding: 25px 20px;
  }

  .section-box h3 {
    font-size: 26px;
  }

  .section-box p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .ueberuns-content {
    padding: 0 15px;
  }

  .section-box h3 {
    font-size: 24px;
  }

  .section-box p {
    font-size: 15px;
  }
}

/* Abschnitt: Zufriedene Kunden */
.kunden h4 {
  color: #555;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Logo-Grid */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.logo-grid img {
  width: 120px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
  .logo-grid img {
    width: 90px;
  }
}

@media (max-width: 480px) {
  .logo-grid img {
    width: 70px;
  }
}
