.hero {
  background-image: url('../hero-background_new.png'); /* Replace with your hero background image */
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 360px;
  background-position: bottom;
  text-align: center;
  padding: 40px 0px 40px 0px;
}

.hero-content {
  margin: 0 auto;
}

.hero-overview {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-overview-item {
  text-align: center;
  align: center;
}

.hero-overview-item img {
  padding-left: 5px;
  width: 480px;
  margin-bottom: 0px;
  margin-top: 20px;
}

.hero-overview-item p {
  font-size: 28px;
  color:#f8f8f8;
  background-color: #ff6600;
  padding: 10px;
  margin-top: 0px;
  margin-right: 20px;
}

.hero h1 {
  font-size: 32px;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 20px;
}

.hero-content img {
  width: 280px;
  margin-top: 60px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin: 0;
}

@media (max-width: 840px) {
  .hero {
      padding: 60px 20px;
      padding-bottom: 0px;
  }

  .hero-overview-item img {
    align: left;
  }
  .hero-overview-item p {
    display: none;
  }
}

@media (max-width: 540px) {
  .hero-overview-item img {
    width: 100%;
    margin-right: 0px;
  }
}

/* Previous styles remain unchanged */

.index {
  background-color: #f8f8f8; /* Light background color */
  padding: 20px;
}

.index-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.index-text {
  width: 100%;
}

.index h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333; /* Dark text color */
}

.index p {
  font-size: 18px;
  color: #666; /* Medium text color */
  line-height: 1.6;
  margin-bottom: 20px;
}

.index-images {
  display: flex;
  flex-direction: column; /* Stacking images vertically */
  margin-left: auto;
  margin-right: auto;
}

.index-item {
  text-align: center;
}

.index-item img {
  width: 200px;
  margin-bottom: 5px;
}

.index-item p {
  font-size: 16px;
  color: #333; /* Dark text color */
  width: 320px;
  margin-top: 0px;
}

@media (max-width: 768px) {
  .index-content,
  .index-images {
      flex-direction: column;
  }

  .index-text,
  .index-item,
  .index-item img {
      width: 100%;
  }
}



.index-products {
  padding: 20px;
  margin: 0 auto;
  max-width: 800px;
}

.index-products-headline {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 10px;
  white-space: nowrap;
  text-align: center;
}
.index-products-headline h2 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 20px;
  color: #333; /* Dark text color */
}
.index-products-headline a {
  text-decoration: none;
  color: #333; /* Dark text color */
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.index-products-headline a:hover {
  color: #ff6600; /* Highlight color on hover */
}


.index-products-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center; /* Zentriert die Grid-Items horizontal */
}

.index-products-item {
  /* background-color: #f8f8f8; */
  padding: 15px;
  display: block;
  text-decoration: none; /* Entfernt den Unterstrich von Links */
  color: inherit; /* Erbt die Textfarbe von den umgebenden Elementen */
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 348px;
}
.index-products-item:hover {
  transform: scale(1.05);
}

.index-products-item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  object-fit: cover;
}

.index-products-item p {
  color: #666; /* Medium text color */
  line-height: 1.2;
  text-align: left;
  margin-top: 0px;
}
.index-products-item-description {
  font-size: 18px;
  margin-bottom: 5px;
}
.index-products-item-price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0px;
}

.index-products-item a {
  padding: 0px;
}

/* Für Bildschirme kleiner als 800px: 2 Spalten */
@media (max-width: 800px) {
  .index-products-list {
      grid-template-columns: repeat(1, 1fr);
  }
}

/* Für Bildschirme kleiner als 500px: 1 Spalte */
@media (max-width: 500px) {
  .index-products-list {
      grid-template-columns: 1fr;
  }
}




/* Previous styles remain unchanged */

.subscription {
  background-color: #f8f8f8; /* Light background color */
  text-align: center;
  padding: 1px 20px;
}

.subscription-content {
  max-width: 600px;
  margin: 40px auto;
}

.subscription h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333; /* Dark text color */
}

.subscription p {
  font-size: 18px;
  color: #666; /* Medium text color */
  margin-bottom: 30px;
}

.subscription-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.subscription-form label {
  margin-right: 10px;
}

.subscription-form input {
  padding: 10px;
  width: 200px;
  margin-right: 10px;
}

.subscription-form button {
  padding: 10px 20px;
  background-color: #ff6600; /* Highlight color for the button */
  color: #fff; /* Light text color for the button text */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.subscription-form button:hover {
  background-color: #e05500; /* Darker highlight color on hover */
}

@media (max-width: 768px) {
  .subscription-form input {
      width: 100%;
      margin-right: 0;
      margin-bottom: 10px;
  }
}


.benefits {
  padding: 20px;
  text-align: center; /* Zentriert die Inhalte */
  background-color: #f8f8f8; /* Light background color */
}

.benefits-headline {
  margin-bottom: 40px;
}

.benefits-list {
  display: grid; /* Verwendet Grid-Layout für eine bessere Kontrolle */
  grid-template-columns: repeat(4, 1fr); /* 4 Spalten für große Bildschirme */
  gap: 20px; /* Abstand zwischen den Items */
  max-width: 800px; /* Maximale Breite der Liste */
  margin: 0 auto; /* Zentriert die Liste innerhalb der Sektion */
  text-align: center; /* Zentriert die Inhalte */
  justify-items: center;
}

.benefits-item {
  
  text-align: center; /* Zentriert den Text unter den Bildern */
}

.benefits-item img {
  width: 100%; /* Bild passt sich der Breite des Containers an */
  height: auto; /* Höhe bleibt proportional */
  margin-bottom: 10px; /* Abstand zwischen Bild und Text */
}

.benefits-item h3 {
  font-size: 18px; /* Schriftgröße für die Überschrift */
  margin: 10px 0; /* Abstand oben und unten */
}

.benefits-item p {
  font-size: 14px; /* Schriftgröße für den Beschreibungstext */
  color: #666; /* Textfarbe */
}

/* Für Bildschirme kleiner als 800px: 2 Spalten */
@media (max-width: 800px) {
  .benefits-list {
      grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
  }
}

/* Für Bildschirme kleiner als 500px: 1 Spalte */
@media (max-width: 500px) {
  .benefits-list {
      grid-template-columns: 1fr; /* 1 Spalte */
  }
}




/* Previous styles remain unchanged */

.gallery {
  /* background-color: #f8f8f8; /* Light background color */
  padding: 40px 20px;
}

.gallery-content {
  max-width: 800px;
  margin: 0 auto;
}

.gallery-text {
  width: 100%;
  text-align: center;
}

.gallery h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333; /* Dark text color */
}

.gallery-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
}

.gallery-item {
  text-align: center;
  width: 30%; /* Adjust the width of gallery items */
  margin-bottom: 20px;
}

.gallery-item img {
  width: 200px;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
}
.gallery-item img:hover {
  border: 1px solid #777;
  transform: scale(1.2); /* Enlarge the icon on hover */
}

.gallery-item p {
  font-size: 16px;
  color: #333; /* Dark text color */
  margin-top: 0px;
}

.gallery a {
  text-decoration: none;
  color: #333; /* Dark text color */
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.gallery a:hover {
  color: #ff6600; /* Highlight color on hover */
}

@media (max-width: 768px) {
  .gallery-images {
      flex-direction: column;
  }
  .gallery-item {
    width: 100%;
  }
  .gallery-item img {
      width: 100%;
  }
  .gallery-item img:hover {
    transform: none;
  }
}







/* Previous styles remain unchanged */

.about-us {
  background-color: #f8f8f8; /* Light background color */
  text-align: center;
  padding: 40px 20px;
}

.about-us-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-us h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333; /* Dark text color */
}

.about-us p {
  font-size: 18px;
  color: #666; /* Medium text color */
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-us-content {
      padding: 0 20px;
  }
}




