:root {
  --bg-color: #faf8f5;
  --text-color: #2c2a29;
  --primary-color: #8c6239; /* Warm Gold / Bronze */
  --secondary-color: #2b4535; /* Deep Green / Forest */
  --accent-color: #c59b27;
  --light-accent: #f0eae1;
  --white: #ffffff;
  --error: #a83232;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 18px; /* Ideal für die Zielgruppe 45-65+ */
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--secondary-color);
  outline: 2px solid var(--primary-color);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

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

/* Header */
.main-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.logo-img {
  width: 40px;
  height: 40px;
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-color);
  padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--secondary-color);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(240,234,225,0.9) 0%, rgba(250,248,245,0.95) 100%), url('images/hero.jpg') no-repeat center center/cover;
  padding: 6rem 0;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(var(--accent-color) 0.8px, transparent 0.8px);
  background-size: 24px 24px;
  opacity: 0.15;
  pointer-events: none;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover, .btn:focus {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Stats Section */
.stats {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

/* Steps Section */
.steps-section {
  padding: 5rem 0;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border-top: 4px solid var(--primary-color);
}

.step-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Trust block styling */
.trust-principles {
  background-color: var(--light-accent);
  padding: 5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.trust-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 6px;
}

/* Services */
.services-section {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
}

/* Features */
.features-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.features-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.features-img-container, .features-content {
  flex: 1;
  min-width: 300px;
}

.features-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.features-list {
  list-style: none;
  margin-top: 1.5rem;
}

.features-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.features-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Pricing */
.pricing-section {
  padding: 5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid #e1dbd2;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.price-val {
  font-size: 2.8rem;
  font-family: var(--font-serif);
  color: var(--secondary-color);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.price-features li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.price-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Form Section */
.form-section {
  background-color: var(--light-accent);
  padding: 5rem 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #c5bfb6;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.form-control:focus {
  outline: 2px solid var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 5px;
}

/* Accordion FAQ */
.accordion {
  max-width: 800px;
  margin: 2rem auto;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 1rem;
  font-size: 1.2rem;
  font-family: var(--font-serif);
  font-weight: bold;
  color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1rem;
}

.accordion-content.open {
  padding: 1rem 1rem 2rem 1rem;
}

/* Trust Layer (Global above footer) */
.trust-layer {
  background-color: #ede7de;
  padding: 4rem 0;
  border-top: 1px solid #ded5c9;
}

.trust-container h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.trust-disclaimer {
  font-size: 0.9rem;
  color: #615a51;
  margin-top: 1.5rem;
  line-height: 1.4;
}

/* Footer */
.main-footer {
  background-color: #1a2c21;
  color: #e5eae6;
  padding: 4rem 0 2rem 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-info h4 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: #cdd6cf;
}

.footer-container h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 5px;
  display: inline-block;
}

.footer-container ul {
  list-style: none;
}

.footer-container ul li {
  margin-bottom: 0.8rem;
}

.footer-container ul li a {
  color: #cdd6cf;
}

.footer-container ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #2e4737;
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: #aebdb2;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
  z-index: 1000;
  padding: 2rem 0;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
  font-size: 0.95rem;
}

.cookie-btns {
  display: flex;
  gap: 1rem;
}

.btn-alt {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-alt:hover {
  background-color: var(--light-accent);
}

/* Accessibility settings */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 1.5rem 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .main-nav.active {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}