.elementor-1941 .elementor-element.elementor-element-63bfebc{--display:flex;}.elementor-1941 .elementor-element.elementor-element-aeff6ce{--display:flex;}.elementor-1941 .elementor-element.elementor-element-73239d9{--display:flex;--overlay-opacity:0.5;}.elementor-1941 .elementor-element.elementor-element-73239d9::before, .elementor-1941 .elementor-element.elementor-element-73239d9 > .elementor-background-video-container::before, .elementor-1941 .elementor-element.elementor-element-73239d9 > .e-con-inner > .elementor-background-video-container::before, .elementor-1941 .elementor-element.elementor-element-73239d9 > .elementor-background-slideshow::before, .elementor-1941 .elementor-element.elementor-element-73239d9 > .e-con-inner > .elementor-background-slideshow::before, .elementor-1941 .elementor-element.elementor-element-73239d9 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-color:#A7D8D2;--background-overlay:'';}.elementor-1941 .elementor-element.elementor-element-01937a6{--display:flex;}.elementor-1941 .elementor-element.elementor-element-01937a6:not(.elementor-motion-effects-element-type-background), .elementor-1941 .elementor-element.elementor-element-01937a6 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#264F5D;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3b27ef5 *//* Header Styles */
.full-width-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px; /* Reduzierte Header-Höhe */
}

.header-logo {
  display: flex;
  align-items: center;
}

/* Ausgewogene Logo-Größe für Desktop */
.logo-img {
  height: 50px !important; /* Größer für Desktop (25px) */
  width: auto !important; /* Behält das Seitenverhältnis bei */
  max-width: 300px !important; /* Etwas größere maximale Breite für Desktop */
}

.header-nav {
  display: flex;
  align-items: center;
  position: relative;
}

/* Versteckte Checkbox für den Toggle */
.hidden-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  color: #264F5D;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #A7D8D2;
  transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger-Button immer definieren, aber standardmäßig ausblenden */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
  margin-left: auto;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease;
  background-color: #264F5D;
}

/* Explizite Mobile-Styles - wichtig für WordPress */
@media screen and (max-width: 768px) {
  /* Kleineres Logo auf mobilen Geräten */
  .logo-img {
    height: 30px !important; /* Kleiner auf mobilen Geräten */
    max-width: 150px !important;
  }

  .hamburger {
    display: block !important; /* !important überschreibt andere Stile */
  }
  
  .nav-list {
    position: fixed;
    left: -100%;
    top: 70px; /* Angepasst an die reduzierte Header-Höhe */
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
    display: block;
  }
  
  #nav-toggle:checked ~ .nav-list {
    left: 0;
  }
  
  .nav-item {
    margin: 20px 0;
  }
  
  /* Wenn die Checkbox aktiviert ist, transformiere die Balken zum X */
  #nav-toggle:checked ~ .hamburger .bar:nth-child(2) {
    opacity: 0;
  }
  
  #nav-toggle:checked ~ .hamburger .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  #nav-toggle:checked ~ .hamburger .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d831bc9 *//* Hauptstil für Klarrein. Website */
:root {
  --primary-color: #A7D8D2;
  --secondary-color: #264F5D;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.svg');
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: white;
  color: var(--secondary-color);
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

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

.btn-secondary:hover {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--light-color);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--primary-color);
}

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

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-content p {
  margin-bottom: 20px;
}

/* About Section */
.about {
  padding: 100px 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

/* Funnel Section */
.funnel {
  padding: 100px 0;
  background-color: var(--primary-color);
  position: relative;
}

.funnel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.svg');
  opacity: 0.05;
}

.funnel-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.funnel-title {
  text-align: center;
  margin-bottom: 30px;
}

.funnel-title h2 {
  font-size: 2rem;
  color: var(--secondary-color);
}

.funnel-steps {
  margin-bottom: 30px;
}

.funnel-step {
  display: none;
}

.funnel-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.step-number {
  display: flex;
  align-items: center;
}

.step-number span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-weight: 600;
  margin-right: 10px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.step-progress {
  display: flex;
  align-items: center;
}

.progress-bar {
  width: 150px;
  height: 6px;
  background-color: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 10px;
}

.progress-fill {
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.step-content {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ced4da;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(167, 216, 210, 0.25);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.service-option {
  position: relative;
  border: 2px solid #ced4da;
  border-radius: var(--border-radius);
  padding: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.service-option:hover {
  border-color: var(--primary-color);
}

.service-option.selected {
  border-color: var(--primary-color);
  background-color: rgba(167, 216, 210, 0.1);
}

.service-option input {
  position: absolute;
  opacity: 0;
}

.service-option label {
  display: block;
  cursor: pointer;
}

.service-option-title {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.step-buttons {
  display: flex;
  justify-content: space-between;
}

.btn-prev {
  background-color: #e9ecef;
  color: #495057;
}

.btn-prev:hover {
  background-color: #dde2e6;
  color: #212529;
  border-color: transparent;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--light-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--secondary-color);
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.contact-form {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.contact-form h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 70px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .about-img {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-content h2 {
    font-size: 2rem;
  }
  
  .funnel-container {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .service-options {
    grid-template-columns: 1fr;
  }
  
  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease;
}

.slide-in-left {
  animation: slideInLeft 1s ease;
}

.slide-in-right {
  animation: slideInRight 1s ease;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-45dcfec */.funnel {
  padding: 100px 0;
  background-color: #A7D8D2;
  position: relative;
}

.funnel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('PATTERN-SVG-URL-HIER-EINFÜGEN');
  opacity: 0.05;
}

.funnel-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.funnel-title {
  text-align: center;
  margin-bottom: 30px;
}

.funnel-title h2 {
  font-size: 2rem;
  color: #264F5D;
}

.funnel-steps {
  margin-bottom: 30px;
}

.funnel-step {
  display: none;
}

.funnel-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.step-number {
  display: flex;
  align-items: center;
}

.step-number span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #A7D8D2;
  color: #264F5D;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-weight: 600;
  margin-right: 10px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #264F5D;
}

.step-progress {
  display: flex;
  align-items: center;
}

.progress-bar {
  width: 150px;
  height: 6px;
  background-color: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 10px;
}

.progress-fill {
  height: 100%;
  background-color: #A7D8D2;
  transition: width 0.3s ease;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.service-option {
  position: relative;
  border: 2px solid #ced4da;
  border-radius: 12px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-option:hover {
  border-color: #A7D8D2;
}

.service-option.selected {
  border-color: #A7D8D2;
  background-color: rgba(167, 216, 210, 0.1);
}

.service-option input {
  position: absolute;
  opacity: 0;
}

.service-option label {
  display: block;
  cursor: pointer;
}

.service-option-title {
  font-weight: 600;
  margin-bottom: 5px;
  color: #264F5D;
}

.step-buttons {
  display: flex;
  justify-content: space-between;
}

.btn-prev {
  background-color: #e9ecef;
  color: #495057;
}

.btn-prev:hover {
  background-color: #dde2e6;
  color: #212529;
  border-color: transparent;
}

@media (max-width: 768px) {
  .funnel-container {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .service-options {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7670197 */footer {
  background-color: #264F5D;
  color: white;
  padding: 70px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #A7D8D2;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: #A7D8D2;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}/* End custom CSS */