/* Globales Styling */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFF8DC;
  color: #333;
}

/* Header-Styling */
header {
  background-color: #FFEC8B;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 28px;
  color: #333;
  margin: 0;
}

/* Hauptinhalt-Styling */
main {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-left {
  flex-basis: 50%;
  max-width: 50%;
  text-align: center;
}

.section-right {
  flex-basis: 50%;
  max-width: 50%;
  text-align: center;
}

h2 {
  font-size: 24px;
  color: #333;
}

p {
  font-size: 16px;
  color: #636363;
}

img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  display: block;
  margin: 0 auto;
}

/* Footer-Styling */
footer {
  background-color: #2B2B2B;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}
