.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
    margin: 0 auto;
}

h1 {
    font-family: 'Barlow', sans-serif !important;
    font-size: 58px;
    color: #000;
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-family: 'Barlow', sans-serif !important;
    font-size: 42px;
    color: #000;
    font-weight: 300;
    font-style: normal;
    margin: 0px;
}

h3 {

    font-family: 'Barlow', sans-serif !important;
    font-size: 24px;
    color: #000;
    font-weight: 400;
}

h5{ 
    font-family: 'Barlow', sans-serif !important;
    font-size: 22px;
    color: #FE0202;
    font-weight: 600;
    text-transform:uppercase;
    letter-spacing: 0.1em;
}


/* Base header */
#site-header {
    font-family: 'Barlow', sans-serif !important;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

/* When scrolled */
#site-header.scrolled {
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav {
    width: inherit;
    padding: 10px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo styling */
.logo {
  font-weight: bold;
  font-size: 1.5rem;
}
.logo span { color: red; }

/* Nav links */
#nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 16px;
}
#nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 400;
}
#nav-links .cta {
  border: 1px solid black;
  padding: 8px 15px;
  border-radius: 6px;
  transition: all 0.3s;
}

#nav-links .cta:hover {
  border: 1px solid black;
  padding: 8px 15px;
  border-radius: 6px;
  color: #fff;
  background: #000;
}

/* Burger menu button (hidden on desktop) */
#burger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}


.section_one {
    background: #6DD2FF;
    background: linear-gradient(180deg,rgba(109, 210, 255, 1) 0%, rgba(227, 227, 227, 1) 27%);

}

.headlines {
    max-width: 1000px;
    padding-top: 125px;
    text-align: center;
    margin: 0 auto;

}

.cta-red {
  font-family: 'Barlow', sans-serif !important;
  color: #fff;
  background: #FE0202;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 20px;
  line-height: 30px;
  text-decoration: none;
  border: 0px;
  transition: all 0.3s;
}

.cta-red:hover {
  font-family: 'Barlow', sans-serif !important;
  color: #fff;
  background: #000;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 20px;
  line-height: 30px;
  text-decoration: none;
  border: 0px;
}

.header-img {
    margin: 0 auto;
    max-width: 990px;
    padding: 50px 0;
    text-align: center;
}

body > main > section > div.header-img > img {
    width: 100%;
    border-radius: 26px;
}

.section_two {
    background: #E3E3E3;
    background: linear-gradient(180deg,rgba(227, 227, 227, 1) 46%, rgba(255, 185, 185, 1) 100%);
}

.vorteile {
    max-width: 1000px;
    padding: 45px 0 0 0;
    text-align: center;
    margin: 0 auto;
}

body > main > section.section_two >  img {
    width: 100%;
}

.application-section {
  max-width: 1320px;
  margin: 0 auto;
}

.info-box-dark {
    font-family: 'Barlow', sans-serif !important;
    background: #333333;
    padding: 20px;
    border-radius: 26px;
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    font-style: italic;

}

.info-box-dark h2 {
    font-family: 'Barlow', sans-serif !important;
    color: #F89797;
    margin-top: 0;
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    line-height: 30px;
}



.image-box{
    padding: 0px;
    margin: 0px;
    height: 400px;
}

.image-box img {
  width: auto;
  height: auto;
  border-radius: 26px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.left {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  padding: 20px 40px;
  max-width: 980px;
}

.left-box {
    display: grid;
    gap: 20px;
}



.top {
    margin-top: -75px;
    z-index: 20;
}



.connector{
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.application-section-right {
  display: flex;
  max-width: 1320px;
  margin: 0 auto;
  justify-content: right;
}

.right {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  padding: 20px 40px;
  max-width: 980px;
}

.info-box {
  font-family: 'Barlow', sans-serif !important;
  background: #F89797;
  padding: 20px;
  border-radius: 26px;
  color: #000;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-style: italic;

}

.info-box h2 {
    font-family: 'Barlow', sans-serif !important;
    color: #fff;
    margin-top: 0;
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    line-height: 30px;
}

.quest{
    font-size: 16px; 
    text-align: center;
    font-weight: 300;
    line-height: 22px;
    font-style: normal;
}

.quest p,
body > main > section.section_two > div.application-section-right > div > div.info-box > p,
body > main > section.section_three > div.application-section-right > div > div.info-box > p {
    margin-block-end: 0px;
}

.section_three {
    background: #E3E3E3;
    background: linear-gradient(0deg,rgba(227, 227, 227, 1) 46%, rgba(255, 185, 185, 1) 100%);
}

.section_four {
    background: #E3E3E3;
    background: linear-gradient(180deg,rgba(227, 227, 227, 1) 0%, rgba(255, 255, 255, 1) 44%);
}

.schritte {
    max-width: 1365px;
    padding: 75px 0px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    gap: 75px;
}

.section_five {
    background: #E3E3E3;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 46%, rgba(255, 185, 185, 1) 100%);
    padding: 75px 0px;
}


.wem {
    display: block;
    background: #F89797;
    border-radius: 26px;
    padding:40px;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;

}

body > main > section.section_five > div > h2 {
    color: #fff;
}

.wem-grid {
    display: flex;
    justify-content: space-between;
    grid-gap: 40px;
}

.wem-grid-img {

}

.wem-grid-img img{
    border-radius: 26px;
}

.wem-grid-box {
    background: #302F2F;
    border-radius: 26px;
    font-family: 'Barlow', sans-serif !important;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    padding: 30px 50px;
    text-align: left;

}

.wem-grid-box-grid {
    display: flex;
    gap: 20px;
    align-items: center;

}

.haken {
    color: #F89797;
    font-size: 48px;
}

.section_six {
    background: #FFB9B9;
}

.kosten {
    font-family: 'Barlow', sans-serif !important;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
}

.kosten2 {
    font-family: 'Barlow', sans-serif !important;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    padding: 0px 0px 50px 0px;
}

.kosten-hl {
    font-family: 'Barlow', sans-serif !important;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
}

.kosten-text-hl{
    padding-top: 75px;
    font-size: 36px;
    font-weight: 600;
}

.kosten-text-price{
    padding-top: 25px;
    font-size: 52px;
    font-weight: 800;
    line-height: 76px;
}

.kosten-text-price span{
    font-size: 24px;
    font-weight: 400;
    line-height: 76px;
}

.section_seven {
    background: #E3E3E3;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 46%, rgba(255, 185, 185, 1) 100%);
}

.row {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 75px;
    text-align: center;
}

.Kontakt{
    padding: 75px 0px;
}

.Kontakt input{
    font-family: 'Barlow', sans-serif !important;
    width: 100%;
    min-height: 35px;
    border: 0px;
    border-bottom: 1px solid #FE0202;
    background: transparent !important;
    font-size: 18px;

}

.footer {
    background: #fff;
    margin: 0 auto;    
}

.footer-outside {
    background: #E3E3E3;
    margin: 0 auto;    
}

.footer-grid {
    border-radius: 26px 26px 0px 0px;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 185, 185, 1) 100%);
    padding: 35px 100px;
    width: 80vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-inner-grid {

    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 0 auto;
    width: 100%;
    align-items: baseline;

}


.footer-grid-left span{
    font-family: 'Barlow', sans-serif !important;
    font-size: 22px;
    color: #F89797;
    font-weight: 500;
}


.footer-grid-left {
    font-family: 'Barlow', sans-serif !important;
    font-size: 18px;
    color: #000;
    font-weight: 300;
    line-height: 30px;
}

.footer-grid-right a{
    font-family: 'Barlow', sans-serif !important;
    font-size: 18px;
    color: #000;
    font-weight: 300;
    line-height: 30px;
    text-decoration: none;
}

.footer > div > p {
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px;
    text-align: center;
}

.footer-outside > div > p {
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px;
    text-align: center;
}

.schritte-img-mob {
    display: none;
}

#form-message {
    padding-top: 35px;
    font-family: 'Barlow', sans-serif !important;
    font-size: 20px;
    color: #000;
    font-weight: 300;
    line-height: 30px;
    text-decoration: none;
}

.datenschutz {
    max-width: 800px;
    padding-top: 125px;
    text-align: left;
    margin: 0 auto;
}

.datenschutz p{
    font-family: 'Barlow', sans-serif !important;
    font-size: 18px;
    color: #000;
    font-weight: 300;
    text-decoration: none;
}

.datenschutz li{
    font-family: 'Barlow', sans-serif !important;
    font-size: 18px;
    color: #000;
    font-weight: 300;
    text-decoration: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;              
  max-width: 100vw;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 15px 50px;
  display: none;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 9999;
  min-height: 50px;
}

.cookie-banner p {
  font-family: 'Barlow', sans-serif !important;
  font-size: 16px;
  margin: 0;
}

.cookie-banner a {
  font-family: 'Barlow', sans-serif !important;
  font-size: 16px;
  margin: 0;
  color: #FE0202;
  text-decoration: none;
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  background: #FE0202;
  border: none;
  padding: 6px 12px;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
}

.cookie-buttons button#decline-cookies {
  background: #555;
}
#contact-form > div > div > p {
      font-family: 'Barlow', sans-serif !important;
      font-size: 16px;
      font-weight: 300;
      color: #000;
}

#contact-form > div > div > p:nth-child(17) > a {
      font-family: 'Barlow', sans-serif !important;
      font-size: 16px;
      font-weight: 500;
      color: #000;
      text-decoration: none;
}

/* Grundlayout */
.modal {
  display: none; /* versteckt standardmäßig */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6); /* Overlay */
}

/* Box in der Mitte */
.modal-content {
  font-family: 'Barlow', sans-serif !important;
  font-size: 20px;  
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Schließen-Button */
.close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}


/* ===== Responsive ===== */
@media (max-width: 768px) {

    h1 {
        font-family: 'Barlow', sans-serif !important;
        font-size: 38px;
        color: #000;
        font-weight: 400;
        font-style: normal;
    }

    h2 {
        font-family: 'Barlow', sans-serif !important;
        font-size: 30px;
        color: #000;
        font-weight: 300;
        font-style: normal;
        margin: 0px;
    }

    h3 {

        font-family: 'Barlow', sans-serif !important;
        font-size: 22px;
        color: #000;
        font-weight: 400;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    h5{ 
        font-family: 'Barlow', sans-serif !important;
        font-size: 16px;
        color: #FE0202;
        font-weight: 600;
        text-transform:uppercase ;
        letter-spacing: 0.2em;
    }

    #nav-links {
        position: absolute;
        top: 70px; /* below header */
        right: 0;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
        width: 200px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -2px 0 6px rgba(0,0,0,0.1);
    }
    #nav-links.open {
        transform: translateX(0);
    }

    .nav {
        width: inherit;
        padding: 10px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #burger {
        display: block;
    }

    .headlines {
    width: 95vw;
    padding-top: 125px;
    text-align: center;
    margin: 0 auto;
    }


    body > main > section > div.header-img > img {
        width: 95vw;
        border-radius: 12px;
        margin: 0 auto;
    }

    .top {
        margin-top: 0px;
    }

    .left {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px 20px;
    }
    
    .left-box {
        display: flex;
        gap: 20px;
        justify-content: center;
        width: 100%;
        
    }
    .right {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px 20px;
    }
    .application-section-right {
      display: flex;
      max-width: 1320px;
      margin: 0 auto;
      justify-content: center;
  }

.wem-grid-img img {
    border-radius: 26px;
    width: 100%;
}
.wem-grid {
    flex-direction: column;
}
.footer-grid {
    border-radius: 26px 26px 0px 0px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 185, 185, 1) 100%);
    padding: 35px 20px;
    width: 80vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-inner-grid {

    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    align-items: baseline;
}

.row {
    max-width: 600px;
    margin: 0 auto;
    padding: 75px 10px 0px;
    text-align: center;
}
.kosten,
.kosten2 {
    padding: 0px 10px;
}
.kosten-text-hl {
    padding-top: 75px;
    font-size: 28px;
    font-weight: 600;
}
.wem {
    display: block;
    background: #F89797;
    border-radius: 26px;
    padding: 10px;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}
.wem-grid {
    gap:10px;
}
.wem-grid-box {
    background: #302F2F;
    border-radius: 26px;
    font-family: 'Barlow', sans-serif !important;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    padding: 30px 20px;
    text-align: left;
    }
.section_five {
    padding: 0px 10px 75px;
}
.image-box img {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.Kontakt input {
    font-family: 'Barlow', sans-serif !important;
    width: 80%;
    min-height: 35px;
    border: 0px;
    border-bottom: 1px solid #FE0202;
    background: transparent !important;
    font-size: 18px;
}
.image-box {
    padding: 0px;
    margin: 0px;
    height: auto;
}
.info-box {
    font-family: 'Barlow', sans-serif !important;
    background: #F89797;
    padding: 20px 10px;
    border-radius: 26px;
    color: #000;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-style: italic;
    overflow-wrap: break-word;
    hyphens: auto;
}
.info-box-dark {
    font-family: 'Barlow', sans-serif !important;
    background: #333333;
    padding: 20px 10px;
    border-radius: 26px;
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-style: italic;
    overflow-wrap: break-word;
    hyphens: auto;
}
  .schritte-img-de {
    display: none;
}
.schritte-img-mob {
    display: block;
    width: 100%;
}
.connector img{
    margin: 0 auto;
    width: 125px;
    text-align: center;
}
#nav-links .cta {
    border: 0px;
    padding: 8px 0px;
    transition: all 0.3s;
}
#nav-links .cta:hover {
    border-radius: 0px;
    border: 0px;
    padding: 8px 10px;
    transition: all 0.3s;
}
#nav-links > a.cta{
    font-size: 18px;
    font-weight: 600;
}
#site-header > div > div > img {
    width: 110px;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;              
  max-width: 100vw;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 15px;
  display: none;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 9999;
  min-height: 50px;
}
.datenschutz {
    width: 100vw;
    padding: 100px 10px 0px;
    box-sizing: border-box;
    text-align: left;
    margin: 0 auto;
}

}