/* Basis-Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body und Container */
body {
  font-family: Montserrat, sans-serif;
  background-color: #F9F9F8;
  color: #231f20;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header & Logo (zentriert und vergrößert) */
.header {
  background-color: rgba(249, 249, 248, 1);
  padding: 20px 0;
  text-align: center;  /* Alle Inhalte im Header werden zentriert */
}

.logo {
  display: inline-block;
  max-height: 105px;  /* Erhöht um ca. 75% im Vergleich z. B. von 60px auf 105px */
  width: auto;
}

/* Hero-Sektion */
.hero {
  color: #fff;
  text-align: center;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: rgba(138,174,93,1.0);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(138,174,93,1.0);
  transition: background-color 0.3s ease;
}

.button:hover,
.button:focus {
  background-color: rgba(65,82,57,1.0);
}

/* Inhaltsbereiche (Content, Benefits, Call-to-Action) */
.content,
.benefits,
.call-to-action {
  padding: 60px 0;
}

.content p,
.call-to-action p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Benefits-Bereich */
/* Wir fügen einen zusätzlichen Wrapper (.benefits-wrapper) ein, um ausschließlich die drei Benefit-Blöcke als Flex-Container anzuordnen */
.benefits-wrapper {
  display: flex;
  justify-content: space-between;  /* Gleichmäßige Verteilung */
  align-items: stretch;
  gap: 20px;
  flex-wrap: nowrap;  /* Im Desktop-Bereich sollen die Blöcke in einer Zeile bleiben */
}

.benefit {
  flex: 1;                         /* Jede Spalte nimmt gleichen Platz ein */
  max-width: 32%;                  /* Damit drei Bereiche in einer Reihe Platz haben */
  box-sizing: border-box;
  text-align: center;
}

.benefit img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.benefit h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.benefit ul {
  list-style: none;
  padding: 0;
}

.benefit ul li {
  margin-bottom: 8px;
}

/* Call-to-Action Bereich */
.call-to-action {
  text-align: center;
}

/* Footer */
.footer {
  background-color: rgba(249,249,248,1);
  padding: 40px 0;
  text-align: center;
}

.footer hr {
  border: none;
  border-bottom: 1px solid #231f20;
  margin-bottom: 20px;
}

.social a {
  margin: 0 10px;
}

.social img {
  height: 24px;
  width: 24px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20,20,20,0.9);
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: #8AAE5D;
  text-decoration: underline;
}

.cookie-banner button {
  background-color: #f1c40f;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
}

/* Responsive Anpassung für mobile Geräte */
@media (max-width: 767px) {
  .benefits-wrapper {
    flex-direction: column;
  }
  .benefit {
    max-width: 100%;
    margin-bottom: 20px;
  }
}