@charset "UTF-8";
@import url(../css/fonts.css);
* {
  box-sizing: border-box; }

body {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #333333;
  margin: 0;
  padding: 0;
  /* Entferne padding-top um Scroll-Problem zu beheben */ }
  @media (min-width: 992px) {
    body {
      font-size: 22px; } }

/* Entferne body.navbar-fixed padding-top */
body.navbar-fixed {
  padding-top: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  margin-top: 2rem; }
  h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0; }

h1 {
  font-size: 3rem;
  margin-bottom: 2rem; }
  @media (min-width: 992px) {
    h1 {
      font-size: 3.5rem; } }

h2 {
  font-size: 2.1rem;
  margin-bottom: 2rem; }
  @media (min-width: 992px) {
    h2 {
      font-size: 2.75rem; } }

h3 {
  font-size: 2rem; }
  @media (min-width: 992px) {
    h3 {
      font-size: 2.25rem; } }

h4 {
  font-size: 1.5rem; }
  @media (min-width: 992px) {
    h4 {
      font-size: 1.875rem; } }

h5 {
  font-size: 1.5rem; }
  @media (min-width: 992px) {
    h5 {
      font-size: 1.625rem; } }

/* Text highlighting */
.text-highlight {
  position: relative;
  display: inline-block; }
  .text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #a3d5eb;
    border-radius: 3px;
    z-index: -1; }

p {
  margin-bottom: 2rem; }
  @media (min-width: 992px) {
    p {
      margin-bottom: 2.5rem; } }

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem; }
  @media (min-width: 992px) {
    .lead {
      font-size: 1.5rem;
      margin-bottom: 3rem; } }

section {
  padding: 8rem 0; }
  @media (min-width: 992px) {
    section {
      padding: 10rem 0; } }

/* Content Section Padding auf 8rem bei min-width 992px */
.content-section {
  padding: 6rem 0;
  overflow-x: hidden; }
  @media (min-width: 992px) {
    .content-section {
      padding: 8rem 0; } }

/* Better column spacing */
.col-md-6, .col-lg-6, .col-xl-6 {
  padding-left: 2rem;
  padding-right: 2rem; }
  @media (min-width: 992px) {
    .col-md-6, .col-lg-6, .col-xl-6 {
      padding-left: 3rem;
      padding-right: 3rem; } }

.text-primary {
  color: #093350 !important; }

.bg-primary {
  background-color: #093350 !important; }

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #093350, #0b4a6b);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  font-size: 1rem; }
  @media (min-width: 992px) {
    .btn-primary {
      padding: 1.125rem 3rem;
      font-size: 1.125rem; } }
  .btn-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #072a40, #093350);
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(9, 51, 80, 0.3); }
  .btn-primary:focus, .btn-primary.focus {
    color: #ffffff;
    background: linear-gradient(135deg, #072a40, #093350);
    box-shadow: 0 0 0 0.2rem rgba(9, 51, 80, 0.5);
    transform: translateY(-3px); }

.btn-outline-primary {
  color: #093350;
  border: 2px solid #093350;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  font-size: 1rem; }
  @media (min-width: 992px) {
    .btn-outline-primary {
      padding: 1.125rem 3rem;
      font-size: 1.125rem; } }
  .btn-outline-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #093350, #0b4a6b);
    border-color: #093350;
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(9, 51, 80, 0.3); }
  .btn-outline-primary:focus, .btn-outline-primary.focus {
    color: #ffffff;
    background: linear-gradient(135deg, #093350, #0b4a6b);
    border-color: #093350;
    box-shadow: 0 0 0 0.2rem rgba(9, 51, 80, 0.5);
    transform: translateY(-3px); }

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(9, 51, 80, 0.1);
  transition: all 0.2s ease-in-out; }
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px); }
  .navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700; }
    .navbar .navbar-brand img {
      height: 100px;
      /* Standard-Höhe erhöht */
      width: auto; }
    .navbar .navbar-brand i {
      color: #093350; }
  .navbar.scrolled .navbar-brand img {
    height: 60px;
    /* Beim Scrollen auf 60px */ }
  @media (max-width: 767.98px) {
    .navbar .navbar-brand img {
      height: 60px;
      /* Unter md-Breakpoint auf 60px */ } }
  @media (max-width: 991.98px) {
    .navbar .navbar-collapse {
      background: rgba(255, 255, 255, 0.98);
      border-radius: 0.5rem;
      margin-top: 1rem;
      padding: 0.25rem 0;
      /* Noch weniger Padding */
      backdrop-filter: blur(10px); } }
  @media (max-width: 991.98px) {
    .navbar .navbar-nav {
      align-items: center;
      padding: 0.5rem 0;
      /* Extra Padding für mehr Abstand */ } }
  .navbar .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease-in-out;
    border-radius: 0.375rem; }
    @media (min-width: 992px) {
      .navbar .nav-link {
        padding: 0.75rem 1.8rem;
        /* Weniger top/bottom padding */
        margin: 0 0.5rem;
        /* 5px mehr margin (0.25rem zusätzlich) */ } }
    @media (max-width: 991.98px) {
      .navbar .nav-link {
        padding: 0.75rem 1.8rem !important;
        /* Weniger top/bottom padding auch mobile */
        margin: 0.5rem 0.5rem;
        /* Mehr vertikaler und horizontaler Abstand */
        border-bottom: none;
        /* Entferne border zwischen Links */
        text-align: center;
        border-radius: 0.375rem;
        /* Damit Hover-Effekt sichtbar ist */ } }
    .navbar .nav-link:hover, .navbar .nav-link.active {
      color: #093350 !important;
      background-color: #f0f9fe;
      /* Neue Hover-Farbe */ }

.navbar.fixed-top {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px); }
  .navbar.fixed-top.scrolled {
    padding: 0.5rem 0; }
  .navbar.fixed-top .navbar-toggler {
    border-color: rgba(9, 51, 80, 0.5);
    margin-right: 0.5rem; }
  @media (max-width: 991.98px) {
    .navbar.fixed-top .navbar-nav {
      margin-top: 1rem; } }
  @media (max-width: 991.98px) {
    .navbar.fixed-top .navbar-collapse.show .navbar-nav {
      background: transparent;
      /* Transparent, da parent bereits background hat */
      border-radius: 0;
      padding: 0;
      margin-top: 0; } }
  @media (max-width: 991.98px) {
    .navbar.fixed-top .navbar-collapse {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(9, 51, 80, 0.1);
      border-radius: 0.5rem;
      margin-top: 1rem;
      padding: 0.25rem 0;
      /* Minimales Padding */
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: opacity 0.15s ease-out, transform 0.15s ease-out;
      /* Nur Opacity und Transform animieren */ } }

.navbar-toggler {
  border: 2px solid #093350;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease; }
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(9, 51, 80, 0.25); }
  .navbar-toggler:hover {
    background-color: rgba(9, 51, 80, 0.1); }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%289, 51, 80, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.hero-section {
  background: #ebf3f6;
  padding: calc(125px + 2rem) 0 0 0;
  /* Berücksichtige fixe Navigation + padding-top */
  margin-top: 0;
  /* Kein margin-top nötig */
  min-height: 55vh;
  display: flex;
  align-items: center; }
  @media (min-width: 992px) {
    .hero-section {
      padding: calc(125px + 2rem) 0 0 0;
      /* Berücksichtige fixe Navigation + padding-top */
      min-height: 50vh; } }
  @media (max-width: 767.98px) {
    .hero-section {
      min-height: 45vh;
      padding: calc(85px + 5rem) 0 0 0 !important;
      /* Mobile: Logo bleibt 60px, daher 85px */ } }
  .hero-section .hero-icon {
    font-size: 6rem;
    opacity: 0.7;
    color: #093350; }
    @media (min-width: 992px) {
      .hero-section .hero-icon {
        font-size: 8rem; } }
    @media (max-width: 767.98px) {
      .hero-section .hero-icon {
        font-size: 4rem;
        margin-top: 1rem; } }
  .hero-section h1 {
    font-weight: 700;
    margin-bottom: 2rem; }
    @media (min-width: 992px) {
      .hero-section h1 {
        margin-bottom: 2.5rem; } }
  .hero-section .lead {
    margin-bottom: 3rem; }
    @media (min-width: 992px) {
      .hero-section .lead {
        margin-bottom: 3.5rem; } }

/* Hero Image Container */
.hero-image {
  border-radius: 1rem;
  overflow: hidden;
  /* Verhindert Überlauf */
  display: inline-block;
  /* Für korrekte Größe */
  position: relative; }

/* Hero Image für Foto */
.hero-image-photo {
  max-width: 100%;
  height: auto;
  display: block;
  /* Verhindert unteren Abstand */
  border-radius: 1rem;
  /* Komplett abgerundet, Container übernimmt Clipping */
  margin-bottom: 0;
  /* Kein unterer Abstand */ }
  @media (min-width: 992px) {
    .hero-image-photo {
      max-width: 400px; } }

.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.5rem rgba(9, 51, 80, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 4rem;
  /* Mehr vertikaler Abstand */
  text-align: center;
  /* Zentriere Inhalt */ }
  @media (min-width: 992px) {
    .feature-card {
      padding: 3rem 2rem;
      margin-bottom: 5rem;
      /* Noch mehr Abstand bei Desktop */ } }
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15); }
  .feature-card .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #093350, #0b4a6b);
    border-radius: 50%;
    margin: 0 auto 2.5rem auto;
    /* Zentriere Icon */ }
    @media (min-width: 992px) {
      .feature-card .feature-icon {
        width: 6rem;
        height: 6rem;
        margin: 0 auto 3rem auto;
        /* Zentriere Icon */ } }
    .feature-card .feature-icon i {
      font-size: 2rem;
      color: #ffffff; }
      @media (min-width: 992px) {
        .feature-card .feature-icon i {
          font-size: 2.5rem; } }
  .feature-card h4 {
    color: #333333;
    margin-bottom: 2.5rem;
    /* Mehr Abstand zwischen Button und Text */
    font-weight: 600; }
    @media (min-width: 992px) {
      .feature-card h4 {
        margin-bottom: 3rem;
        /* Mehr Abstand zwischen Button und Text */ } }
  .feature-card p {
    color: #666666;
    margin-bottom: 0;
    line-height: 1.7; }

.independence-highlight .highlight-box {
  background: linear-gradient(135deg, #093350, #0b4a6b);
  color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  padding: 4rem 3rem; }
  @media (min-width: 992px) {
    .independence-highlight .highlight-box {
      padding: 5rem 4rem; } }
  .independence-highlight .highlight-box i {
    font-size: 4rem;
    color: #ffffff; }
    @media (min-width: 992px) {
      .independence-highlight .highlight-box i {
        font-size: 5rem; } }
  .independence-highlight .highlight-box h4 {
    font-weight: 700;
    margin-bottom: 1rem; }

footer {
  padding: 5rem 0 3rem !important; }
  @media (min-width: 992px) {
    footer {
      padding: 6rem 0 4rem !important; } }
  footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem; }
  footer p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8); }
  footer a {
    transition: all 0.2s ease-in-out; }
    footer a:hover {
      color: #a3d5eb !important;
      text-decoration: underline !important; }

.footer-image {
  max-height: 215px;
  opacity: 1; }
  @media (max-width: 767.98px) {
    .footer-image {
      display: none; } }

.page-header {
  background: linear-gradient(135deg, #093350, #0b4a6b);
  color: white;
  padding: calc(125px + 8rem) 0 4rem 0;
  /* Berücksichtige fixe Navigation + padding-top */
  margin-top: 0;
  /* Kein margin-top nötig */ }
  @media (max-width: 767.98px) {
    .page-header {
      padding: calc(85px + 8rem) 0 4rem 0;
      /* Mobile: Logo bleibt 60px, daher 85px */ } }
  .page-header h1 {
    font-weight: 700;
    margin-bottom: 1rem; }

.contact-info {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 0.75rem;
  border: 1px solid #e9ecef; }
  @media (min-width: 992px) {
    .contact-info {
      padding: 4rem; } }
  .contact-info h4 {
    color: #093350;
    margin-bottom: 2rem; }
  .contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
    /* Konsistenter Abstand */ }
    .contact-info .contact-item:last-child {
      border-bottom: none; }
    .contact-info .contact-item i {
      color: #093350;
      width: 20px;
      text-align: center;
      margin-top: 0.7rem;
      /* Mehr Abstand oben */
      flex-shrink: 0; }
  .contact-info a {
    color: #093350 !important;
    text-decoration: none; }
    .contact-info a:hover {
      color: #0b4a6b !important;
      text-decoration: underline; }

/* Kontaktformular ohne Einrückungen */
.contact-form {
  padding-left: 0;
  margin-left: 0;
  /* Bootstrap Col Abstand beibehalten */ }
  .contact-form .form-control,
  .contact-form .form-select {
    margin-left: 0;
    padding-left: 0 !important;
    /* Entferne padding-left */
    padding-right: 0 !important;
    /* Entferne padding-right */
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    text-indent: 0.75rem;
    /* Sorge für Text-Einrückung ohne padding */ }
  .contact-form .form-select {
    padding-left: 0.5rem !important;
    /* Minimal padding für Select */ }
  .contact-form .row [class*="col-"] {
    padding-right: 0.75rem;
    padding-left: 0.75rem; }

.contact-section a {
  color: #093350 !important;
  text-decoration: none; }
  .contact-section a:hover {
    color: #0b4a6b !important;
    text-decoration: underline; }
.contact-section .text-highlight::after {
  display: none !important; }
.contact-section .contact-info h4 i {
  display: none; }
.contact-section .row > [class*="col-"] {
  display: flex;
  flex-direction: column; }
.contact-section .contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%; }

.calculator-form {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 0.75rem;
  border: 1px solid #e9ecef; }
  @media (min-width: 992px) {
    .calculator-form {
      padding: 4rem; } }
  .calculator-form .form-label {
    font-weight: 600;
    color: #093350;
    margin-bottom: 1rem;
    font-size: 1.125rem; }
    @media (min-width: 992px) {
      .calculator-form .form-label {
        margin-bottom: 1.25rem;
        font-size: 1.25rem; } }
  .calculator-form .form-control,
  .calculator-form .form-select {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease-in-out;
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem; }
    @media (min-width: 992px) {
      .calculator-form .form-control,
      .calculator-form .form-select {
        padding: 1.5rem 2rem;
        font-size: 1.25rem;
        margin-bottom: 2rem; } }
    .calculator-form .form-control:focus,
    .calculator-form .form-select:focus {
      border-color: #093350;
      box-shadow: 0 0 0 0.2rem rgba(9, 51, 80, 0.25); }

.calculator-result {
  color: #333333;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center; }

.display-6 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2; }

ul, ol {
  margin-bottom: 2rem; }
  @media (min-width: 992px) {
    ul, ol {
      margin-bottom: 2.5rem; } }

ul li, ol li {
  margin-bottom: 0.75rem; }
  @media (min-width: 992px) {
    ul li, ol li {
      margin-bottom: 1rem; } }

ul li[class*="fa-check"] {
  list-style: none;
  margin-left: 0;
  position: relative; }

blockquote {
  border-left: 4px solid #a3d5eb;
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: #666666; }
  @media (min-width: 992px) {
    blockquote {
      padding-left: 3rem;
      margin: 3rem 0;
      font-size: 1.1rem; } }

.card {
  border: 1px solid rgba(9, 51, 80, 0.1);
  box-shadow: 0 0.125rem 0.5rem rgba(9, 51, 80, 0.1);
  transition: all 0.3s ease; }
  .card:hover {
    box-shadow: 0 0.5rem 1rem rgba(9, 51, 80, 0.15); }

.card-body {
  padding: 2rem; }
  @media (min-width: 992px) {
    .card-body {
      padding: 2.5rem; } }

.quote-icon {
  font-size: 3rem;
  color: #a3d5eb; }

.quote-icon-small {
  font-size: 1.5rem;
  color: #a3d5eb; }

.lightbulb-icon {
  color: #ffc107;
  font-size: 2rem; }

@media (max-width: 767.98px) {
  .container {
    --bs-gutter-x: 1.6rem;
    padding-left: 23px;
    padding-right: 23px; } }
.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(9, 51, 80, 0.25); }

.nav-link:focus {
  outline: 2px solid #093350;
  outline-offset: 2px; }

.skip-link {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important; }
  .skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    background: #093350;
    color: #ffffff;
    padding: 1rem;
    z-index: 1031;
    text-decoration: none;
    border-radius: 0 0 0.375rem 0; }

@media (max-width: 767.98px) {
  .display-4 {
    font-size: 2rem; }

  .lead {
    font-size: 1.1rem; } }
@media print {
  .navbar,
  .btn,
  footer {
    display: none !important; }

  body {
    padding-top: 0; }

  .hero-section,
  .page-header {
    background: none !important;
    padding-top: 2rem !important;
    /* Kein Navbar-Abstand beim Drucken */ } }
.hero-section,
.page-header {
  margin-top: 0 !important;
  /* padding-top wird in den jeweiligen Regeln mit calc() gesetzt */ }

/* UL Listen komplett ohne Einrückung und Bullets */
ul.list-unstyled li {
  margin-left: 0 !important;
  padding-left: 0 !important; }

/* Partner-Features und Leistungen-Features spacing */
.partner-features .feature-card,
.leistungen-features .feature-card {
  margin-bottom: 3rem; }
  @media (min-width: 992px) {
    .partner-features .feature-card,
    .leistungen-features .feature-card {
      margin-bottom: 4rem; } }

/* Mobile Navigation korrekte Anzeige */
@media (max-width: 991.98px) {
  .navbar.fixed-top.navbar-expand-lg .navbar-nav {
    display: flex !important;
    flex-direction: column; }

  .navbar.fixed-top.navbar-expand-lg .navbar-collapse:not(.show) .navbar-nav {
    display: none !important; } }
/* Scroll-Verhalten korrigieren */
html {
  scroll-padding-top: 125px;
  /* Desktop: Logo 100px + Navbar padding */ }
  @media (max-width: 767.98px) {
    html {
      scroll-padding-top: 85px;
      /* Mobile: Logo bleibt 60px */ } }

/* Größere Icons bei Process Section auf Leistungen-Seite */
.leistungen-process .feature-icon {
  width: 6rem !important;
  height: 6rem !important; }
  .leistungen-process .feature-icon i {
    font-size: 2.5rem !important; }
  @media (min-width: 992px) {
    .leistungen-process .feature-icon {
      width: 7rem !important;
      height: 7rem !important; }
      .leistungen-process .feature-icon i {
        font-size: 3rem !important; } }

/* Partner-Seite H3 ohne Icons */
.partner-page h3 i {
  display: none; }

/* Nav-Items margin-bottom entfernen */
.navbar .nav-item {
  margin-bottom: 0 !important; }

.contact-section + .content-section .feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px; }
  .contact-section + .content-section .feature-card p {
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-bottom: 0; }
  @media (min-width: 992px) {
    .contact-section + .content-section .feature-card {
      min-height: 280px; } }

.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px; }
  .contact-section .contact-info h4 {
    flex-shrink: 0;
    margin-bottom: 1.5rem; }
  .contact-section .contact-info .contact-item {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem; }
    .contact-section .contact-info .contact-item:last-child {
      margin-bottom: 0; }
  @media (min-width: 992px) {
    .contact-section .contact-info {
      min-height: 220px; } }

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