:root {
  --bg-color: #E5EBE4;
  --accent-color: #495945;
  --text-color: #000000;
  --max-width: 2400px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.logo-area { 
	display: flex; 
	align-items: center; 
}
.logo-img { 
	height: 40px; 
	margin-right: 0.5rem; 
}
.header {
  background: #ffffffaa;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: transform 0.4s ease;
}
.header.hide {
  transform: translateY(-100%);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: bold;
}

.logo {
  color: var(--accent-color);
}

/* Hero mit fixiertem Hintergrundbild */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("Hintergrundbild 1.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* bleibt beim Scrollen fixiert */
  animation: heroFade 1.5s ease-out forwards;
  opacity: 0;
}

/* Dunkles Overlay (edler Kontrast, ca. 70% sichtbar) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dunkler, professioneller */
}

/* Text über dem Overlay */
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

/* Fade-In Animation */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
}

.btn-secondary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

/* About */
.benefits {
  margin-top: 1rem;
  list-style: none;
}

.benefits li {
  margin-bottom: 0.5rem;
}

/* ================= Image Text Section ================= */
.image-text-section {
  background: var(--surface-bg);
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-side img {
  align-items:center;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.text-side p {
  margin-bottom: 1rem;
}

/* Features */
.features {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Pricing */
.feature-grid, .pricing-grid { 
	background: var(--surface-bg);
	display: grid;
	gap: 1.5rem; 
    margin-top: 2rem;
	grid-template-columns: repeat(3,1fr);
}

.highlight { border: 2px solid var(--accent-color); }
.price-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}

.price {
  font-size: 2rem;
  color: var(--accent-color);
  margin: 1rem 0;
}
.slideshow { aspect-ratio: 4 / 3; position: relative; overflow: hidden; margin-bottom: 1rem; }
.slideshow img {
position: absolute;
inset:0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 5s;
}
.slideshow img.active { opacity: 1; }

/* Testimonials */
.testimonials {
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

blockquote {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  font-style: italic;
}

/* Contact */
.form-group {
  margin-bottom: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 2.8rem;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}:root {
  --bg-color: #E5EBE4;
  --accent-color: #495945;
  --text-color: #000000;
  --max-width: 2400px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.logo-area { 
	display: flex; 
	align-items: center; 
}
.logo-img { 
	height: 40px; 
	margin-right: 0.5rem; 
}
.header {
  background: #ffffffaa;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: transform 0.4s ease;
}
.header.hide {
  transform: translateY(-100%);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: bold;
}

.logo {
  color: var(--accent-color);
}

/* Hero mit fixiertem Hintergrundbild */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("Hintergrundbild 1.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* bleibt beim Scrollen fixiert */
  animation: heroFade 1.5s ease-out forwards;
  opacity: 0;
}

/* Dunkles Overlay (edler Kontrast, ca. 70% sichtbar) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dunkler, professioneller */
}

/* Text über dem Overlay */
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

/* Fade-In Animation */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
}

.btn-secondary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

/* About */
.benefits {
  margin-top: 1rem;
  list-style: none;
}

.benefits li {
  margin-bottom: 0.5rem;
}

/* ================= Image Text Section ================= */
.image-text-section {
  background: var(--surface-bg);
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-side img {
  align-items:center;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.text-side p {
  margin-bottom: 1rem;
}

/* Features */
.features {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Pricing */
.feature-grid, .pricing-grid { 
	background: var(--surface-bg);
	display: grid;
	gap: 1.5rem; 
    margin-top: 2rem;
	grid-template-columns: repeat(3,1fr);
}

.highlight { border: 2px solid var(--accent-color); }
.price-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}

.price {
  font-size: 2rem;
  color: var(--accent-color);
  margin: 1rem 0;
}
.slideshow { aspect-ratio: 4 / 3; position: relative; overflow: hidden; margin-bottom: 1rem; }
.slideshow img {
position: absolute;
inset:0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 5s;
}
.slideshow img.active { opacity: 1; }

/* Testimonials */
.testimonials {
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

blockquote {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  font-style: italic;
}

/* Contact */
.form-group {
  margin-bottom: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 2.8rem;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}:root {
  --bg-color: #E5EBE4;
  --accent-color: #495945;
  --text-color: #000000;
  --max-width: 2400px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.logo-area { 
	display: flex; 
	align-items: center; 
}
.logo-img { 
	height: 40px; 
	margin-right: 0.5rem; 
}
.header {
  background: #ffffffaa;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: transform 0.4s ease;
}
.header.hide {
  transform: translateY(-100%);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: bold;
}

.logo {
  color: var(--accent-color);
}

/* Hero mit fixiertem Hintergrundbild */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("Hintergrundbild 1.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* bleibt beim Scrollen fixiert */
  animation: heroFade 1.5s ease-out forwards;
  opacity: 0;
}

/* Dunkles Overlay (edler Kontrast, ca. 70% sichtbar) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dunkler, professioneller */
}

/* Text über dem Overlay */
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

/* Fade-In Animation */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
}

.btn-secondary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

/* About */
.benefits {
  margin-top: 1rem;
  list-style: none;
}

.benefits li {
  margin-bottom: 0.5rem;
}

/* ================= Image Text Section ================= */
.image-text-section {
  background: var(--surface-bg);
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-side img {
  align-items:center;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.text-side p {
  margin-bottom: 1rem;
}

/* Features */
.features {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Pricing */
.feature-grid, .pricing-grid { 
	background: var(--surface-bg);
	display: grid;
	gap: 1.5rem; 
    margin-top: 2rem;
	grid-template-columns: repeat(3,1fr);
}

.highlight { border: 2px solid var(--accent-color); }
.price-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}

.price {
  font-size: 2rem;
  color: var(--accent-color);
  margin: 1rem 0;
}
.slideshow { aspect-ratio: 4 / 3; position: relative; overflow: hidden; margin-bottom: 1rem; }
.slideshow img {
position: absolute;
inset:0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 5s;
}
.slideshow img.active { opacity: 1; }

/* Testimonials */
.testimonials {
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

blockquote {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  font-style: italic;
}

/* Contact */
.form-group {
  margin-bottom: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 2.8rem;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}:root {
  --bg-color: #E5EBE4;
  --accent-color: #495945;
  --text-color: #000000;
  --max-width: 2400px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.logo-area { 
	display: flex; 
	align-items: center; 
}
.logo-img { 
	height: 40px; 
	margin-right: 0.5rem; 
}
.header {
  background: #ffffffaa;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: transform 0.4s ease;
}
.header.hide {
  transform: translateY(-100%);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: bold;
}

.logo {
  color: var(--accent-color);
}

/* Hero mit fixiertem Hintergrundbild */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("Hintergrundbild 1.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* bleibt beim Scrollen fixiert */
  animation: heroFade 1.5s ease-out forwards;
  opacity: 0;
}

/* Dunkles Overlay (edler Kontrast, ca. 70% sichtbar) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dunkler, professioneller */
}

/* Text über dem Overlay */
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

/* Fade-In Animation */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
}

.btn-secondary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

/* About */
.benefits {
  margin-top: 1rem;
  list-style: none;
}

.benefits li {
  margin-bottom: 0.5rem;
}

/* ================= Image Text Section ================= */
.image-text-section {
  background: var(--surface-bg);
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-side img {
  align-items:center;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.text-side p {
  margin-bottom: 1rem;
}

/* Features */
.features {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Pricing */
.feature-grid, .pricing-grid { 
	background: var(--surface-bg);
	display: grid;
	gap: 1.5rem; 
    margin-top: 2rem;
	grid-template-columns: repeat(3,1fr);
}

.highlight { border: 2px solid var(--accent-color); }
.price-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}

.price {
  font-size: 2rem;
  color: var(--accent-color);
  margin: 1rem 0;
}
.slideshow { aspect-ratio: 4 / 3; position: relative; overflow: hidden; margin-bottom: 1rem; }
.slideshow img {
position: absolute;
inset:0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 5s;
}
.slideshow img.active { opacity: 1; }

/* Testimonials */
.testimonials {
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

blockquote {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  font-style: italic;
}

/* Contact */
.form-group {
  margin-bottom: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 2.8rem;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}:root {
  --bg-color: #E5EBE4;
  --accent-color: #495945;
  --text-color: #000000;
  --max-width: 2400px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.logo-area { 
	display: flex; 
	align-items: center; 
}
.logo-img { 
	height: 40px; 
	margin-right: 0.5rem; 
}
.header {
  background: #ffffffaa;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: transform 0.4s ease;
}
.header.hide {
  transform: translateY(-100%);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: bold;
}

.logo {
  color: var(--accent-color);
}

/* Hero mit fixiertem Hintergrundbild */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("Hintergrundbild 1.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* bleibt beim Scrollen fixiert */
  animation: heroFade 1.5s ease-out forwards;
  opacity: 0;
}

/* Dunkles Overlay (edler Kontrast, ca. 70% sichtbar) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dunkler, professioneller */
}

/* Text über dem Overlay */
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

/* Fade-In Animation */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
}

.btn-secondary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

/* About */
.benefits {
  margin-top: 1rem;
  list-style: none;
}

.benefits li {
  margin-bottom: 0.5rem;
}

/* ================= Image Text Section ================= */
.image-text-section {
  background: var(--surface-bg);
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-side img {
  align-items:center;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.text-side p {
  margin-bottom: 1rem;
}

/* Features */
.features {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Pricing */
.feature-grid, .pricing-grid { 
	background: var(--surface-bg);
	display: grid;
	gap: 1.5rem; 
    margin-top: 2rem;
	grid-template-columns: repeat(3,1fr);
}

.highlight { border: 2px solid var(--accent-color); }
.price-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}

.price {
  font-size: 2rem;
  color: var(--accent-color);
  margin: 1rem 0;
}
.slideshow { aspect-ratio: 4 / 3; position: relative; overflow: hidden; margin-bottom: 1rem; }
.slideshow img {
position: absolute;
inset:0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 5s;
}
.slideshow img.active { opacity: 1; }

/* Testimonials */
.testimonials {
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

blockquote {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  font-style: italic;
}

/* Contact */
.form-group {
  margin-bottom: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 2.8rem;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}:root {
  --bg-color: #E5EBE4;
  --accent-color: #495945;
  --text-color: #000000;
  --max-width: 2400px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.logo-area { 
	display: flex; 
	align-items: center; 
}
.logo-img { 
	height: 40px; 
	margin-right: 0.5rem; 
}
.header {
  background: #ffffffaa;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: transform 0.4s ease;
}
.header.hide {
  transform: translateY(-100%);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: bold;
}

.logo {
  color: var(--accent-color);
}

/* Hero mit fixiertem Hintergrundbild */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("Hintergrundbild 1.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* bleibt beim Scrollen fixiert */
  animation: heroFade 1.5s ease-out forwards;
  opacity: 0;
}

/* Dunkles Overlay (edler Kontrast, ca. 70% sichtbar) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dunkler, professioneller */
}

/* Text über dem Overlay */
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

/* Fade-In Animation */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
}

.btn-secondary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

/* About */
.benefits {
  margin-top: 1rem;
  list-style: none;
}

.benefits li {
  margin-bottom: 0.5rem;
}

/* ================= Image Text Section ================= */
.image-text-section {
  background: var(--surface-bg);
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-side img {
  align-items:center;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.text-side p {
  margin-bottom: 1rem;
}

/* Features */
.features {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Pricing */
.feature-grid, .pricing-grid { 
	background: var(--surface-bg);
	display: grid;
	gap: 1.5rem; 
    margin-top: 2rem;
	grid-template-columns: repeat(3,1fr);
}

.highlight { border: 2px solid var(--accent-color); }
.price-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}

.price {
  font-size: 2rem;
  color: var(--accent-color);
  margin: 1rem 0;
}
.slideshow { aspect-ratio: 4 / 3; position: relative; overflow: hidden; margin-bottom: 1rem; }
.slideshow img {
position: absolute;
inset:0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 5s;
}
.slideshow img.active { opacity: 1; }

/* Testimonials */
.testimonials {
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

blockquote {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  font-style: italic;
}

/* Contact */
.form-group {
  margin-bottom: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 2.8rem;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}:root {
  --bg-color: #E5EBE4;
  --accent-color: #495945;
  --text-color: #000000;
  --max-width: 2400px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.logo-area { 
	display: flex; 
	align-items: center; 
}
.logo-img { 
	height: 40px; 
	margin-right: 0.5rem; 
}
.header {
  background: #ffffffaa;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: transform 0.4s ease;
}
.header.hide {
  transform: translateY(-100%);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: bold;
}

.logo {
  color: var(--accent-color);
}

/* Hero mit fixiertem Hintergrundbild */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("Hintergrundbild 1.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* bleibt beim Scrollen fixiert */
  animation: heroFade 1.5s ease-out forwards;
  opacity: 0;
}

/* Dunkles Overlay (edler Kontrast, ca. 70% sichtbar) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dunkler, professioneller */
}

/* Text über dem Overlay */
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

/* Fade-In Animation */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
}

.btn-secondary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

/* About */
.benefits {
  margin-top: 1rem;
  list-style: none;
}

.benefits li {
  margin-bottom: 0.5rem;
}

/* ================= Image Text Section ================= */
.image-text-section {
  background: var(--surface-bg);
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-side img {
  align-items:center;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.text-side p {
  margin-bottom: 1rem;
}

/* Features */
.features {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Pricing */
.feature-grid, .pricing-grid { 
	background: var(--surface-bg);
	display: grid;
	gap: 1.5rem; 
    margin-top: 2rem;
	grid-template-columns: repeat(3,1fr);
}

.highlight { border: 2px solid var(--accent-color); }
.price-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}

.price {
  font-size: 2rem;
  color: var(--accent-color);
  margin: 1rem 0;
}
.slideshow { aspect-ratio: 4 / 3; position: relative; overflow: hidden; margin-bottom: 1rem; }
.slideshow img {
position: absolute;
inset:0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 5s;
}
.slideshow img.active { opacity: 1; }

/* Testimonials */
.testimonials {
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

blockquote {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  font-style: italic;
}

/* Contact */
.form-group {
  margin-bottom: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 2.8rem;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}:root {
  --bg-color: #E5EBE4;
  --accent-color: #495945;
  --text-color: #000000;
  --max-width: 2400px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.logo-area { 
	display: flex; 
	align-items: center; 
}
.logo-img { 
	height: 40px; 
	margin-right: 0.5rem; 
}
.header {
  background: #ffffffaa;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: transform 0.4s ease;
}
.header.hide {
  transform: translateY(-100%);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: bold;
}

.logo {
  color: var(--accent-color);
}

/* Hero mit fixiertem Hintergrundbild */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("Hintergrundbild 1.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* bleibt beim Scrollen fixiert */
  animation: heroFade 1.5s ease-out forwards;
  opacity: 0;
}

/* Dunkles Overlay (edler Kontrast, ca. 70% sichtbar) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dunkler, professioneller */
}

/* Text über dem Overlay */
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

/* Fade-In Animation */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
}

.btn-secondary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

/* About */
.benefits {
  margin-top: 1rem;
  list-style: none;
}

.benefits li {
  margin-bottom: 0.5rem;
}

/* ================= Image Text Section ================= */
.image-text-section {
  background: var(--surface-bg);
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-side img {
  align-items:center;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.text-side p {
  margin-bottom: 1rem;
}

/* Features */
.features {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Pricing */
.feature-grid, .pricing-grid { 
	background: var(--surface-bg);
	display: grid;
	gap: 1.5rem; 
    margin-top: 2rem;
	grid-template-columns: repeat(3,1fr);
}

.highlight { border: 2px solid var(--accent-color); }
.price-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}

.price {
  font-size: 2rem;
  color: var(--accent-color);
  margin: 1rem 0;
}
.slideshow { aspect-ratio: 4 / 3; position: relative; overflow: hidden; margin-bottom: 1rem; }
.slideshow img {
position: absolute;
inset:0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 5s;
}
.slideshow img.active { opacity: 1; }

/* Testimonials */
.testimonials {
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

blockquote {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  font-style: italic;
}

/* Contact */
.form-group {
  margin-bottom: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 2.8rem;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}