/* Service Slider */
.service-slider-container {
  position: relative;
  max-width: 80em;
  margin: 0 auto;
  padding: 0 40px;
}

.service-slider {
  overflow-x: auto;
  position: relative;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
/* Container */
#primary .hero-section .container {
  padding-top: 0px;
}
.service-slider__track {
  display: flex;
  gap: 32px;
  user-select: none;
  cursor: grab;
}

.service-slider__track.active {
  cursor: grabbing;
}

/* Hide scrollbar but keep functionality */
.service-slider {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.service-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.service-slider__item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
  cursor: pointer;
}

.service-slider__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.service-slider__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-slider__title {
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}

.service-slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gold-dark);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  transition: all 0.3s ease;
  z-index: 2;
}

.service-slider-button.prev {
  left: 0;
}

.service-slider-button.next {
  right: 0;
}

.service-slider-button:hover {
  background: var(--color-gold-dark);
  color: white;
}

.service-slider-button:focus {
  outline: 2px solid var(--color-gold-dark);
  outline-offset: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .service-slider-container {
    padding: 0 15px;
  }

  .service-slider-button {
    display: none;
  }

  .service-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 15px 0;
  }

  .service-slider__track {
    gap: 20px; /* Reduzierter Abstand zwischen Items */
  }

  .service-slider__item {
    min-width: calc((100% - 60px) / 3.5); /* 3,5 Items sichtbar */
    scroll-snap-align: start;
  }

  .service-slider__icon {
    width: 40px; /* Etwas kleinere Icons auf Mobile */
    height: 40px;
  }

  .service-slider__title {
    font-size: 12px; /* Kleinere Schrift auf Mobile */
  }
}

/* Service Slider Section */
.service-slider-section {
  margin: 40px auto;
  max-width: 80em;
}

.service-slider-title {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 20px;
  padding: 0 40px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .service-slider-section {
    margin: 30px auto;
  }

  .service-slider-title {
    font-size: 22px;
    padding: 0 15px;
    margin-bottom: 10px;
  }
}

/* Base Styles */
:root {
  --primary-color: #273b35;
  --text-color: #333;
  --text-muted: #666;
  --light-bg: #f8f9fa;
  --border-color: #e5e7eb;
  --white: #fff;
  --yellow: #fbbf24;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 0.5rem;
}
.hero-checklist {
  margin: 2rem 0;
}

.hero-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #333;
}

.hero-checklist .check-icon {
  width: 20px;
  height: 20px;
  color: #b59630; /* or your preferred check color */
  flex-shrink: 0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fcfbf8;
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.section-description {
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #1e2f2a;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--light-bg);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: #f1f1f1;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
}

.main-nav {
  display: none;
}

.nav-link {
  margin-left: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
}

.btn-menu {
  background: none;
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  border-radius: var(--radius);
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'EB Garamond', serif;
  font-weight: 500;
  line-height: 1.1;
  color: #050505;
  font-display: swap; /* Improves font loading performance */
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-image {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-sigel {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
}

.star {
  width: 1rem;
  height: 1rem;
  color: var(--yellow);
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/* How it works */
.how-it-works {
  padding: 4rem 0;
  background-color: transparent;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step-card {
  background-color: #f0f2f1;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.3s ease;
  z-index: 1;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--text-muted);
}

.cta-center {
  text-align: center;
  margin-top: 3rem;
}

.cta-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonial-stars {
  display: flex;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  color: #050505;
}

/* FAQ */
.faq {
  padding: 4rem 0;
  background-color: transparent;
}

/* Service Area */
.service-area {
  padding: 4rem 0;
}

.service-area-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-area-text {
  flex: 1;
}

.service-area-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.canton-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.canton-tag {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--light-bg);
  border-radius: 9999px;
  font-size: 0.875rem;
}

.canton-icon {
  width: 0.75rem;
  height: 0.75rem;
}

.service-area-image {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

/* Final CTA */
.final-cta {
  padding: 4rem 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* SEO Content */
.seo-content {
  padding: 4rem 0;
  background-color: transparent;
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.seo-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.seo-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-text,
.footer-info {
  color: var(--text-muted);
}

.footer-links,
.footer-info {
  list-style: none;
}

.footer-links li,
.footer-info li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Utility Classes */
.bg-light {
  background-color: var(--light-bg);
}

.mobile-only {
  display: block;
}

.desktop-only {
  display: none;
}

/* Media Queries */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .steps-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-area-content {
    flex-direction: row;
  }

  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: block;
  }

  .main-nav {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
  }

  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .seo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Container */
#primary .hero-section .container {
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 0px;
  margin-right: 0px;
}

.cta-content {
  background-color: var(--color-green-dark);
  color: white;
  padding: 40px;
  border-radius: 15px;
}
.cta-title {
  color: white;
}
.cta-center2 .btn-primary {
  color: var(--color-green-dark);
  background-color: white;
}

/* Hero content */
.page-wrapper #primary .hero-section .container .hero-content {
  width: 100% !important;
}

/* Container */
.page-wrapper #primary .hero-section .container {
  width: 100% !important;
}

/* Container */
#primary .hero-section .container {
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 0px;
  margin-right: 0px;
}

/* Image */
.hero-section .hero-image img {
  object-fit: cover;
}

/* Image */
.page-wrapper #primary .hero-section .container .hero-content .hero-image img {
  height: 100% !important;
}

/* Hero section */
#primary .hero-section {
  padding-bottom: 0px;
  min-height: 0vh;
  padding-top: 0px !important;
}

/* Image */
.service-slider__track .service-slider__item img {
  width: 35px;
}

/* Service slider container */
.slider .service-slider-section .service-slider-container {
  margin-bottom: 0px;
}

/* Hero text */
.hero-section .hero-text {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* How works */
#primary .how-it-works {
  background-color: transparent;
  padding-top: 40px;
  padding-bottom: 40px;
  transform: translatex(0px) translatey(0px);
}

/* Button */
.cta-center2 .btn-primary {
  background-color: #ffffff;
  width: 300px;
}

/* Step card */
.how-it-works .step-card {
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #f0f2f1;
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.3s ease;
  z-index: 1;
}

/* Container */
#primary .how-it-works .container {
  max-width: 100%;
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

/* Container */
.page-wrapper #primary .how-it-works .container {
  width: 100% !important;
}

/* Header container */
#masthead .header-container {
  padding-left: 0px;
  padding-right: 0px;
}

/* Container2 */
#primary .explain .container2 {
  display: flex;
}

/* Paragraph */
.explain .box-left p {
  margin-bottom: 0px;
}

/* Heading */
.explain .box-left h2 {
  margin-bottom: 16px;
}

/* Box right */
.page-wrapper #primary .explain .container2 .box-right {
  width: 35% !important;
}

/* Explain */
#primary .explain {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Box inner */
.explain .box-right .box-inner {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 80%;
  min-width: 80%;
}

/* Box right */
.explain .box-right {
  text-align: left;
  align-self: auto;
  float: right;
  display: flex;
  justify-content: flex-end;
}

/* Box left */
.page-wrapper #primary .explain .container2 .box-left {
  width: 100% !important;
}

/* Paragraph */
.hero-section .hero-text p {
  display: none;
}

/* Heading */
.hero-section .hero-text h1 {
  padding-bottom: 0px;
  color: #050505;
}

/* Page wrapper */
.page-wrapper {
  background-color: transparent;
  transform: translatex(-3px) translatey(0px);
  font-family: 'gt';
}

/* Desktop logo */
#masthead a .desktop-logo {
  width: 200px;
}

/* Menu text */
#menu-menu a .menu-text {
  font-family: 'inter';
  font-weight: 400;
}

/* Cta content */
.cta-center2 .cta-content {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #273b35;
}

/* Paragraph */
.cta-center2 p {
  color: rgba(255, 255, 255, 0.59);
  font-size: 13px;
  margin-bottom: 0px;
}

/* Link */
.cta-center2 .cta-description a {
  color: #ffffff;
}

/* Heading */
.cta-center2 h2 {
  padding-bottom: 30px;
}

/* Cta center2 */
#primary .cta-center2 {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Testimonials */
#primary .testimonials {
  padding-top: 0px;
  padding-bottom: 0px;
}

/* Faq */
#primary .faq {
  padding-top: 48px;
  padding-bottom: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  border-radius: 15px;
  background-color: transparent;
}

/* Service area */
#primary .service-area {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* Final cta */
#primary .final-cta {
  margin-top: 48px;
  margin-bottom: 48px;
  border-radius: 15px;
  background-color: #273b35;
  transform: translatex(0px) translatey(0px);
  padding-top: 0px;
  padding-bottom: 0px;
  min-height: 300px;
  display: flex;
  align-items: center;
}

/* Seo content */
#primary .seo-content {
  padding-top: 48px;
  padding-bottom: 24px;
  background-color: transparent;
  transform: translatex(0px) translatey(0px);
}

/* Testimonial card */
.testimonials .testimonials-grid .testimonial-card {
  background-color: #ffffff;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.3s ease;
  z-index: 1;
}

/* Paragraph */
.final-cta p {
  color: #ffffff;
}

/* Container */
.explain .funktioniert .container {
  padding-right: 0px;
  padding-left: 0px;
  max-width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Container */
.page-wrapper #primary .explain .funktioniert .container {
  width: 100% !important;
}

/* Subtitle */
.funktioniert .subtitle {
  display: none;
}

/* Heading */
.funktioniert h2 {
  padding-bottom: 30px;
}

/* Container */
#primary .cta-center2 .container {
  padding-right: 0px;
  padding-left: 0px;
  margin-left: 0px;
  margin-right: 0px;
  max-width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Container */
.page-wrapper #primary .cta-center2 .container {
  width: 100% !important;
}

/* Steps container */
.how-it-works .steps-container {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* Container */
#primary .testimonials .container {
  padding-right: 0px;
  padding-left: 0px;
  margin-left: 0px;
  margin-right: 0px;
  max-width: 100%;
}

/* Container */
.page-wrapper #primary .testimonials .container {
  width: 100% !important;
}

/* Accordion button */
.accordion .accordion-item .accordion-button {
  font-size: 16px;
  background-color: transparent;
  border-style: none;
}

/* Heading */
.service-area .service-area-text h2 {
  text-align: left;
}

/* Container */
#primary .service-area .container {
  padding-right: 0px;
  padding-left: 0px;
  margin-left: 0px;
  margin-right: 0px;
  max-width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  background-color: #f0f2f1;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.3s ease;
  z-index: 1;
}

/* Container */
.page-wrapper #primary .service-area .container {
  width: 100% !important;
}

/* Service area image */
.service-area .service-area-image {
  text-align: right;
}

/* Body */
body {
  background-color: #fcfbf8;
}

/* Accordion item */
.faq .accordion .accordion-item {
  background-color: transparent;
  border-style: none;
  border-bottom-color: #f0f2f1;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

/* Container */
#primary .final-cta .container {
  padding-top: 0px;
  padding-bottom: 0px;
}

/* Primary */
#primary {
  transform: translatex(0px) translatey(0px);
}

/* Image */
.service-area .service-area-image img {
  display: inline-block;
  transform: translatex(0px) translatey(0px) !important;
}

/* Accordion content */
.accordion .accordion-item .accordion-content {
  background-color: transparent;
}

/* Active */
.accordion .accordion-item .active {
  background-color: transparent !important;
}

/* Container */
#primary .seo-content .container {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  max-width: 100%;
  transform: translatex(0px) translatey(0px);
  padding-right: 0px;
  padding-left: 0px;
}

/* Container */
.page-wrapper #primary .seo-content .container {
  width: 100% !important;
}

/* Seo grid */
.seo-accordion .accordion-item .seo-grid {
  border-style: none;
  padding-left: 0px;
  padding-right: 0px;
}

/* Accordion button */
.faq .accordion .accordion-button {
  font-family: 'inter';
}

/* Seo accordion button */
.seo-accordion .accordion-item .seo-accordion-button {
  font-family: 'gt';
}

/* Seo accordion */
#primary .seo-accordion {
  margin-bottom: 0px;
  margin-top: 0px;
}

/* Footer grid */
.site-footer .footer-grid {
  transform: translatex(0px) translatey(0px);
}

/* List Item */
.hero-checklist ul li {
  font-family: 'Inter', sans-serif;
  color: #050505;
}

/* Paragraph */
.how-it-works .step-card p {
  color: #050505;
}

/* Testimonial text */
.testimonials-grid .testimonial-card .testimonial-text {
  color: #050505;
}

/* Active */
.faq .accordion .active {
  color: #050505;
}

/* Paragraph */
.service-area .service-area-text p {
  color: #050505;
}

/* Paragraph */
.seo-grid .seo-item p {
  color: #050505;
}

/* Heading */
.seo-grid .seo-item h3 {
  color: #050505;
}

/* Span Tag */
.hero-text .rating span {
  font-family: 'inter';
}

/* Button */
.hero-text .hero-buttons .btn-primary {
  font-family: 'inter';
}

/* Active */
.seo-accordion .accordion-item .active {
  padding-right: 0px;
  padding-left: 0px;
}

/* 768px and smaller screen sizes */
@media (max-width: 768px) {
  /* Hero section */
  #primary .hero-section {
    padding-top: 0px !important;
    transform: translatex(0px) translatey(0px);
  }

  /* Hero text */
  .hero-section .hero-text {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  /* Hero sigel */
  .hero-sigel {
    width: 60px;
    height: 60px;
    top: -5px;
    right: -5px;
  }

  /* Cta center2 */
  #primary .cta-center2 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  /* Container */
  #primary .testimonials .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Faq */
  #primary .faq {
    padding-top: 0px;
  }
}

/* 600px and smaller screen sizes */
@media (max-width: 600px) {
  /* Service slider container */
  .slider .service-slider-section .service-slider-container {
    padding-right: 0px;
    padding-left: 0px;
  }
}

/* 480px and smaller screen sizes */
@media (max-width: 480px) {
  /* Heading */
  .final-cta h2 {
    text-align: center;
  }

  /* Heading */
  .cta-center2 h2 {
    text-align: center;
  }

  /* Hero sigel */
  .hero-sigel {
    width: 100px;
    height: 100px;
    top: 15px;
    right: 15px;
  }

  /* Rating */
  .hero-section .hero-text .rating {
    text-align: center;
    justify-content: center;
    margin-top: -14px;
  }

  /* Container */
  #primary .hero-section .container {
    padding-bottom: 0px;
  }

  /* Service slider section */
  #primary .slider .service-slider-section {
    margin-top: 0px;
    margin-bottom: 40px;
  }

  /* Heading */
  .how-it-works .section-header h2 {
    text-align: left;
  }

  /* How works */
  #primary .how-it-works {
    transform: translatex(0px) translatey(0px);
  }

  /* Steps container */
  .how-it-works .how-it-works-slider .steps-container {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  /* Accordion button */
  .faq .accordion .accordion-button {
    padding-right: 0px;
    padding-left: 0px;
  }

  /* Container */
  #primary .faq .container {
    padding-right: 0px;
    padding-left: 0px;
  }

  /* Heading */
  .faq h2 {
    text-align: left;
  }

  /* Heading */
  .testimonials h2 {
    text-align: left;
  }

  /* Seo accordion button */
  .seo-accordion .accordion-item .seo-accordion-button {
    padding-right: 0px;
    padding-left: 0px;
  }
}

/* 769px and larger screen sizes */
@media (min-width: 769px) {
  /* Service slider section */
  #primary .slider .service-slider-section {
    margin-top: 20px;
  }

  /* Service slider  title */
  .service-slider__track .service-slider__item .service-slider__title {
    font-size: 13px;
  }
}

/* 1024px and larger screen sizes */
@media (min-width: 1024px) {
  /* Copyright */
  .site-footer .footer-container .footer-grid .copyright {
    width: 100% !important;
  }

  /* Copyright */
  .site-footer .footer-grid .copyright {
    max-width: 100%;
  }
}

/* 1025px and larger screen sizes */
@media (min-width: 1025px) {
  /* Menu text */
  #menu-menu a .menu-text {
    font-size: 16px;
  }
}
/* Container */
#primary .faq .container {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-right: 0px;
  margin-left: 0px;
}

/* Service area */
#primary .service-area {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Seo accordion button */
.seo-accordion .accordion-item .seo-accordion-button {
}

/* 481px and larger screen sizes */
@media (min-width: 481px) {
  /* Container */
  #primary .faq .container {
    padding-right: 0px;
    padding-left: 0px;
  }

  /* Seo accordion button */
  .seo-accordion .accordion-item .seo-accordion-button {
    padding-right: 0px;
    padding-left: 0px;
  }
}
/* Seo content wrapper */
.seo-accordion .accordion-item .seo-content-wrapper {
  border-style: none;
  padding-left: 0px;
  padding-right: 0px;
}

/* Responsive Hero Title */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
}

/* Haushaltshilfe CTA Component Styles */
.haushaltshilfe-cta {
  background-color: #f8f9fa;
  padding: 3rem 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.haushaltshilfe-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.haushaltshilfe-cta-title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #273b35;
  line-height: 1.3;
}

.haushaltshilfe-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

.benefit-item:hover {
  border-color: #b59630;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #b59630;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.benefit-check svg {
  width: 12px;
  height: 12px;
}

.benefit-text {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.4;
}

.haushaltshilfe-cta-button {
  text-align: center;
}

.btn-haushaltshilfe {
  background-color: #273b35;
  color: white;
  border: 1px solid #273b35;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-haushaltshilfe:hover {
  background-color: #1a2925;
  border-color: #1a2925;
  transform: translateY(-1px);
}

.btn-haushaltshilfe:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .haushaltshilfe-cta {
    padding: 2rem 0;
  }

  .haushaltshilfe-cta-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .haushaltshilfe-benefits {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .benefit-item {
    padding: 0.625rem;
  }

  .benefit-check {
    width: 18px;
    height: 18px;
  }

  .benefit-check svg {
    width: 10px;
    height: 10px;
  }

  .benefit-text {
    font-size: 0.9rem;
  }

  .btn-haushaltshilfe {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .haushaltshilfe-cta {
    padding: 1.5rem 0;
  }

  .haushaltshilfe-cta-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .haushaltshilfe-benefits {
    margin-bottom: 1.25rem;
  }

  .benefit-item {
    padding: 0.5rem;
  }

  .benefit-check {
    width: 16px;
    height: 16px;
  }

  .benefit-check svg {
    width: 9px;
    height: 9px;
  }

  .benefit-text {
    font-size: 0.85rem;
  }

  .btn-haushaltshilfe {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
