@charset "UTF-8";
/* Grundfarben und Schrift */
:root {
  --brand-blue: #6FB2D6;
  --light-bg-blue: #8ecae6;
  --card-blue: #6FB2D6;
  --text-dark: #000;
}

.text-primary {
  color: var(--brand-blue) !important;
}

/* Hero Bereich */
.main-card {
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: none;
}

.btn-outline-primary {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  border-width: 2px;
}

.btn-outline-primary:hover {
  background-color: var(--brand-blue);
  color: #fff;
}

.faq-card .arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,1)'%3E%3Cpath d='M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

/* FAQ Karten */
.faq-card {
  position: relative;
  float: left;
  background-color: var(--card-blue);
  border-radius: 1rem;
  border: none;
  transition: transform 0.3s ease;
}

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

.faq-card ul {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.faq-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  width: 100%;
}

.faq-card ul li::before {
  display: none;
}

.faq-card ul li:last-child {
  border-bottom: none;
}

.faq-card a {
  text-decoration: none;
  color: white !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-card a i {
  color: var(--brand-blue);
  font-size: 1.2rem;
}

/* CTA Karte */
.cta-card {
  background-color: #f8f9fa;
  border-radius: 25px;
  border: 1px solid #e9ecef;
}

.btn-white {
  background: #fff;
  border: 1px solid #dee2e6;
  color: var(--text-dark);
  font-weight: bold;
}

/* Responsive Anpassungen */
@media (max-width: 991px) {
  .hero-section {
    padding-bottom: 50px;
  }
  .main-card {
    border-radius: 20px;
  }
}
.faq-accordion .accordion-item {
  background-color: #6fb2d6;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border-bottom: 1px solid #111;
}

.faq-accordion .active, .cb-accordion .accordion-item:hover {
  background-color: #6fb2d6;
}

.faq-accordion .accordion-item:after {
  content: "+";
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.faq-accordion .active:after {
  content: "−";
}

.faq-accordion .panel {
  padding: 0 18px;
  background-color: #6fb2d6;
  display: none;
  overflow: hidden;
}

.ce-plainfaq_pilist {
  height: 100%;
}
.ce-plainfaq_pilist .tx-plain-faq {
  height: 100%;
}
.ce-plainfaq_pilist .tx-plain-faq .btn-primary:hover {
  background: transparent;
}

@media (max-width: 767.98px) {
  .col-xs-12:has(.ce-plainfaq_pilist) {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767.98px) {
  .col-xs-12:has(.ce-plainfaq_pilist):has(+ .col-xs-12 .ce-plainfaq_pilist) {
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .col-xs-12:has(.ce-plainfaq_pilist):last-child {
    margin-bottom: 1.5rem;
  }
}

.faq-card ul li {
  color: white;
}

.cta-card .btn-primary {
  width: fit-content !important;
}

/*# sourceMappingURL=styles.css.map */
