/* Spezifische Stile für die About-Seite */
.about-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #e3b750;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.about-page header {
  width: 100%;
  box-sizing: border-box;
}

.about-page .main-container {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 0; /* Kein Padding */
  text-align: center; /* Text zentriert in diesem Container */
  margin-top: 0; /* Sicherstellen, dass kein zusätzlicher Abstand vorhanden ist */
}

.about-page main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Sicherstellen, dass der Inhalt oben beginnt */
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0; /* Kein Padding */
}

.about-page .about-content {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(227, 183, 80, 0.95);
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center; /* Text zentriert innerhalb des Bereichs */
  margin: 0; /* Kein zusätzliches Margin */
  margin-top: 20px; /* Reduzierter Abstand */
}

.about-page .about-content h3 {
  margin-bottom: 20px;
  font-size: 2.4em; /* 20% größer als der Standard von 2em */
}

.about-page .about-content p {
  margin-bottom: 15px;
  font-size: 1.2em; /* 20% größer als der Standard von 1em */
}

/* Beispiel-Scrollleistenstil für den Bereich */
.about-page .about-content::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  display: block;
}

.about-page .about-content::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 5px;
}

.about-page .about-content::-webkit-scrollbar-track {
  background-color: #e3b750;
  border-radius: 5px;
}

.about-page .about-content::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .about-page .main-container {
      padding: 0;
      margin-top: 0; /* Weitere Reduktion der Margin für mobile Geräte */
  }

  .about-page main {
      padding: 0; /* Entfernen Sie zusätzliches Padding */
  }

  .about-page .about-content {
      padding: 10px;
      border-radius: 5px;
      margin-top: 10px; /* Weitere Reduktion der Margin für mobile Geräte */
  }

  .about-page .about-content h3 {
      font-size: 2em; /* 20% größer als der Standard von 1.6667em */
  }

  .about-page .about-content p {
      font-size: 1.2em; /* 20% größer als der Standard von 1em */
  }
}