/* Grundlayout */
.df-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.df-section-light {
  background: #f7f7f7;
}

.df-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* Hero */
.df-hero {
  background: #222;
  color: #fff;
  padding: 80px 20px;
}

.df-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.df-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.df-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Buttons */
.df-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.df-btn-primary {
  background: #d96a27;
  color: #fff;
}

.df-btn-secondary {
  background: #444;
  color: #fff;
}

.df-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Features */
.df-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.df-feature {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.df-feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

/* Produktkarte */
.df-product-card {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr;
  gap: 30px;
  align-items: start;
}

.df-product-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.df-product-details {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.df-product-details li {
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
}

/* CTA-Box */
.df-cta-box {
  background: #ffe8d9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

/* Footer */
.df-footer {
  text-align: center;
  color: #666;
}

/* Typografie allgemein */
.df-section p {
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 15px auto;
}

/* Mobile Optimierung */
@media (max-width: 900px) {
  .df-hero h1 {
    font-size: 2.1rem;
  }

  .df-hero p {
    font-size: 1.05rem;
  }

  .df-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .df-product-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .df-section {
    padding: 40px 16px;
  }

  .df-features {
    grid-template-columns: 1fr;
  }

  .df-hero {
    padding: 60px 16px;
  }

  .df-hero h1 {
    font-size: 1.8rem;
  }

  .df-btn {
    width: 100%;
    max-width: 320px;
  }

  .df-product-card {
    gap: 20px;
  }

  .df-section p {
    font-size: 0.98rem;
  }
}