/* Grundlegende Einstellungen */
body {
  background-color: #f0f2f5; /* Hellgrauer Hintergrund */
  font-family: "Verdana", sans-serif;
  color: #333333; /* Dunkelgrauer Text */
}

/* Haupt-Container - Zentriert ohne Flexbox */
.card {
  background-color: #ffffff; /* Weißer Karten-Hintergrund */
  width: 500px;
  margin: 60px auto; /* Oben/Unten 60px, Links/Rechts automatisch (zentriert) */
  padding: 20px;
  border: 1px solid #dfe1e5;
  border-radius: 10px; /* Abgerundete Ecken */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
  text-align: center; /* Zentriert Text und Inline-Elemente (wie Bilder) */
}

/* Überschriften */
h1 {
  color: #2c3e50; /* Dunkelblau */
  font-size: 32px;
  margin-bottom: 5px;
}

h3 {
  color: #7f8c8d; /* Gräulich */
  font-weight: normal;
  margin-top: 0;
  border-bottom: 2px solid #3498db; /* Blaue Linie unter dem Untertitel */
  padding-bottom: 10px;
  margin-bottom: 20px;
}

h2 {
  color: #e67e22; /* Orange */
  font-size: 20px;
  text-transform: uppercase;
}

/* Bild Styling */
.main-image {
  width: 100%; /* Bild füllt die Breite der Karte */
  height: auto;
  border-radius: 5px;
  border: 3px solid #ecf0f1;
}

/* Text Styling */
.intro-text {
  line-height: 1.6; /* Zeilenabstand für bessere Lesbarkeit */
  font-style: italic;
  padding: 0 10px;
}

/* Boxen für Listen - Linksbündiger Text innerhalb der zentrierten Karte */
.content-box {
  text-align: left;
  background-color: #fafafa;
  padding: 15px;
  margin: 20px 0;
  border-left: 5px solid #e67e22; /* Orangener Balken links */
}

ul,
ol {
  margin-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* Link Styling */
a {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
  color: #2980b9;
}

/* Footer */
.footer-text {
  font-size: 12px;
  color: #bdc3c7;
  margin-top: 30px;
  border-top: 1px solid #eeeeee;
  padding-top: 10px;
}
