body {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.turnstile-wrapper {
  margin: 15px 0;
}
.turnstile-placeholder {
  display: inline-block;
  width: 300px;
  height: 65px;
  vertical-align: middle;
}
.language-button {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    object-fit: inherit !important;
    margin-top: 5px;
}
.What-We-Do {
    background: linear-gradient(
            65deg,
            #ffffff, /* Start with white */
            #fffbf0, /* Transition to light cream */
            #fffbf0, /* Then blend into your original gradient start color */
            #ffffff, /* Middle color of your original gradient */
            #ffffff  /* End with your original gradient end color */
    );

    background-size: 600% 600%;
    animation: gradientAnimation 30s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.what-content {
    color: white !important;
    padding: 20px;
}

.what-image {
    max-width: 667px;
    transition: filter 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.What-We-Do.scrolled .what-image {

}

.button {
    display: inline-block;
    margin-right: 10px;
}
.offer-personal .button {
    display: block !important;
}
.callsec {
    display: inline-block;
    vertical-align: top;
}

.callsec-content {
    display: inline-block;

}

.image-fir, .image-sec {
    vertical-align: middle;
    margin-left: 5px;
}

a.active .language-button {
    box-shadow: 0 0 8px 2px rgba(238, 162, 42, 0.75); /* Glowing effect with shadow */
    border-bottom: none !important;
}
.navigation .language-list-mobile {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 4px;
}
.navigation .language-list-mobile li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.language-list-mobile {
    display: none;
}
.language-list {
    display: none;
}

@media only screen and (max-width: 900px) {
    /* Desktop-Sprachleiste im mobilen Header ausblenden */
    .menu-ul > ul.language-list {
        display: none !important;
    }
    /* Falls das UL keine Klasse trägt, trotzdem das zweite UL verstecken */
    .menu-ul ul + ul {
        display: none !important;
    }
}

/* Zusätzliche Absicherung für schmale Geräte */
@media only screen and (max-width: 767px) {
    .page-header .menu-ul > ul.language-list {
        display: none !important;
    }
    .page-header .menu-ul ul + ul {
        display: none !important;
    }
}

/* Desktop-only Klassenselektion für Sprachleiste */
.language-list.desktop-only {
    display: none;
}
@media only screen and (min-width: 901px) {
    .language-list.desktop-only {
        display: flex;
    }
}

.animated-word {
    position: relative;
    display: inline-block;

    white-space: nowrap;
}

.word1 {
    opacity: 1;
}

.word2 {
    opacity: 1;
    color: white;
    /* background: linear-gradient(45deg, #1e5665, #4b9ea5, #1e5665); */
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 0.5;
    }
    20%, 24%, 55% {
        opacity: 1;
    }
}

@keyframes changeToWhite {
    to {
        color: white;
        background: none;
        opacity: 1;
        -webkit-background-clip: text;
    }
}

img.logo-menuclick {
    position: absolute;
    top: 32px;
    left: 245px;
}
.navigation {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 8;
    transform: scaleY(0);
    /* background: url(/images/Panels-menu.png); */
    transform-origin: top;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.2s cubic-bezier(0, 0.32, 0.36, 0.97);
}
.underline-animation {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
}


.page-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px; /* Adjust the height as needed */
    /*background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0.1px 0 0 #fffbf0;*/
}
.underline-animation::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.navigator {
    margin: 10px;
    background: transparent;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 60px;
    border: none;
    padding: 28px 30px;
    text-decoration: none; /* Entfernt die Unterstreichung */

}


.navigator:hover {
    background-color: #EAA22A;
    border-radius: 2px;
}

  
.navigator.active {
    color: white; 
    text-decoration: none; 
}
  

.navigation.open {
    transform: scaleY(1);
}

.navigation.open .navigator {
    transform: scaleY(1);
    opacity: 1;
}

.container {
    max-width: 800px; /* oder eine andere gewünschte Breite */
    margin: 0 auto;
  }
  
  .paper-like {
    margin-top: 20px; /* oder ein anderer gewünschter Abstand */
    padding: 20px; /* oder ein anderer gewünschter Abstand */
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  

/* .header { */
    /* height: 1004px; */
    /* background-image: url(/images/header.png); */
    /* background-repeat: no-repeat; */
    /* background-position: right; */
	
/* } */

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    height: 100vh;
    align-items: center;
    /* background-image: none !important; */
}

.page-header.is-sticky {
    position: fixed;
    /* box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1); */
    padding: 8px 0;
    animation: slideDown 0.35s ease-out;
    width: 100%;
    max-width: 100%;
    /* #background: linear-gradient(65deg, #1e5665, #4b9ea5, #1e5665); */
    background: linear-gradient(65deg, #1d5565, #2b6f83df, #1d5565) !important;
	z-index: 9999;
    /*background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
 box-shadow: 0 0.1px 0 0 #fffbf0;*/
}
.page-header.is-sticky .page-header-container {
    display: flex;
    justify-content: space-between;
    padding-top: 0;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}




@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

img.is-sticky-logo {
    display: none;
}
.page-header.is-sticky img.page-header-logo {
    display: none;
}
.page-header.is-sticky img.is-sticky-logo {
    display: block;
    max-height: 70px;
    margin-top: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
}
.cs-nav.mobile-open img.page-header-logo {
    display: none;
}
.cs-nav.mobile-open img.is-sticky-logo {
    display: block;
}

@media only screen and (min-width: 767px){
    /* img.is-sticky-logo {
        display: block;
    }
    img.page-header-logo {
        display: none;
    } */
    img.menuclick {
        display: none;
    }
    img.menuimg {
        display: none;
    }
    .menu-ul ul li.desktop-menu {
        margin-top: -10px;
        display: block !important;
    }
}

.header {

    overflow: hidden;
    /* background: radial-gradient(circle at 0% 0%,
        rgba(30, 86, 101, 1.00) 0%,
        rgba(30, 86, 101, 1.00) 20%,
        rgba(30, 86, 101, 0.99) 20%,
        rgba(30, 86, 101, 0.97) 31%,
        rgba(30, 86, 101, 0.89) 43%,
        rgba(30, 86, 101, 0.67) 54%,
        rgba(30, 86, 101, 0.33) 66%,
        rgba(30, 86, 101, 0.11) 77%,
        rgba(30, 86, 101, 0.03) 89%,
        rgba(30, 86, 101, 0.01) 100%
    ); */
}
.page-header {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: flex-start;
}
.menu {
    display: inline;
    align-items: flex-end;
    align-items: center;
    gap: 10px;
    position: relative;
    left: -5px;
}

.page-header.is-sticky .menu {
    left: -30px;
}
.menu-ul {
    display: flex;
}
.menu-ul ul {
    display: flex;
    position: relative;
}
.menu-ul ul li:hover {
    /*background-color: #EAA22A;
    border-radius: 2px;*/
}
.menu-ul ul li {
    text-decoration: none;
    list-style: none;
    padding: 9px 9px;
}

.menu-ul ul li.desktop-menu {
    font-size: 2rem;
    color: #fffbf0 !important;
    display: none;
    border: none;
    font-weight: 300;
}
.menu-ul ul li.desktop-menu:hover {
    font-weight: 400;
}
.language-link {
    display: inline-block;
    font-size: 18px;
    overflow: visible;
    border-radius: 0;
    width: auto;
    height: auto;
    line-height: 1;
    text-align: center;
}
.menu img {
    object-fit: contain;
}

.menu-ul ul li a {
    text-decoration: none;
    color: #fffbf0;
    font-size: 1.3rem;
}
.menu-ul ul li:last-child::after {
    width: 0;
}
.menu-ul ul li.desktop-menu::after {
    width: 0;
}
.menu-ul ul.language-list {
    display: flex;
}

.buttons {
    display: flex;
    gap: 20px;
}
.button {
    width: fit-content;
}
.button a {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    line-height: 26px;
    gap: 13px;
    color: #1A5565;
    padding: 20px;
    width: fit-content;
    border-radius: 0.25rem;
    border: 1px solid #1A5666;
    font-weight: 400;
}

.button.contact-now-btn a {
    color: white;
    border: 1px solid #1A5666;
    border: 1px solid white;
    border-radius: 0.25rem;

}

.button.contact-now-btn a:hover {
    color: #1A5565;
    background: #fff;
}

.button a img {
    width: 20px;
    padding-top: 3px;
}
.button a:hover {
    background: #1A5565;
    color: #fff;
}
.button a:hover img.image-fir {
    display: none;
}
.button a:hover img.image-sec {
    display: block;
}
img.image-sec {
    display: none;
}

.header-content {
    padding: 20px;
    z-index: 999;
}
.header-container .circle {
    position: absolute;
    top: -100px;
    right: -150px;
    width: 820px; /* Adjust size as needed */
    height: 820px; /* Adjust size as needed */
    background-color: white; 
    z-index: -1;
    opacity: 8%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.header-content h1 {
    font-size: 3rem;
    /* color: #1A5565; */
    color: white;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1vh;
}
.header-content h2{
    font-size: 1.8rem;
    /* color: #1A5565; */
    color: white;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 3vh;
}

.header-content p {
    color: white;
    line-height: 1.2;
}
p {
    font-size: 18px;
    font-weight: 300;
    color: #484848;
	    margin: 0;
}
.header-content p {
    width: 448px;
    margin-bottom: 40px;
	    margin-top: 0;
}
.header-content h1 sapn {
    color: #EEA22A;
    font-weight: 500;
}

a.active {
    text-decoration: none;
    border-radius: 3px;
    background: none;
    /*border-bottom: 4px solid #EEA22A; */
    color: #333;
    padding-bottom: 0px;
}


h5 {
    font-size: 18px;
    font-weight: 500;
	margin: 0;
    color: #1A5565;
}
h5 span {
    padding: 5px 3px;
    color: #ffffff;
    background: #1A5565;
}
.What-We-Do {
    display: grid;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 120px;
    grid-template-columns: 1fr 1fr;
}
.what-content {
    display: grid;
    gap: 28px;
}
h2 {
    font-size: 44px;
    font-weight: 400;
    color: #1A5565;
    line-height: 1;
    margin: 0
}
.callsec {
    display: flex;
    gap: 7px;
    justify-content: center;
    align-items: center;
}
.callsec img {
    object-fit: contain;
    width: 15px;
}
.callsec-content h4 {
    margin: 0;
    font-size: 15px;
    color: #484848;
    font-weight: 500;
}
.callsec-content h3 {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
    color: #484848;
}
.callsec-content a {
    text-decoration: none;
    color: inherit;
}
.Mission {
    /* background: linear-gradient(65deg, #1e5665, #4b9ea5, #1e5665); */
    background: linear-gradient(65deg, #1d5565, #2b6f83df, #1d5565);
    background-size: 600% 600%;
    animation: gradientAnimation 30s ease infinite;
    background-size: cover;
    width: 100%;
    position: relative;
    height: auto;
    padding-bottom: 20px;
}
.Mission-container {

    margin: 0 auto;
    padding-top: 100px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 100px;
    z-index: 500;
    position: relative;
}

.Mission-container h5 {
    z-index: 300;
    font-size: 18px;
    font-weight: 400;
    color: #EEA22A;
    margin: 0;
    text-align: center;
}
.Mission-container h5 span {
    padding: 5px 3px;
    background: #EEA22A;
    color: #fff;
    margin-right: 10px;
}
.Mission-container h2 {
    color: #ffffff;
    padding-top: 28px;
    position: relative;
    z-index: 500;
    text-align: center;
}
.Mission-container p {
    color: #fff;
    width: 500px;
    text-align: center;
    margin: 0 auto;
    padding-top: 10px;
}
.Mission-flex-box {
    margin-top: 10px !important;
    display: grid;
    position: relative;
    z-index: 500;
    gap: 27px;
    margin: 0 auto;
    padding-top: 20px;
    padding-left: 95px;
    padding-right: 95px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.Mission-box {
    background: rgba(255, 255, 255, 0.86);
    display: grid;
    gap: 20px;
    border-radius: 0.25rem;
    padding: 50px 30px;
    flex: 1; /* Allows the boxes to grow equally */
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0; /* Initial hidden state */
    transform: translateY(20px); /* Initial position */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}
.Mission-box.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Final position */
}
.Mission-box h3 {
    color: #1A5565;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}
.Mission-box p {
    color: #484848;
    width: 318px;
    text-align: center;
    margin: 0;
    padding: 0;
}
.Mission-container h2 span {
    color: #ECA32A;
    font-weight: 600;
}
.offer-section h5 span {
    margin-right: 5px;
}
.offer-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-image: radial-gradient(#ffda9d 1.5px, transparent 0);
    background-size: 40px 40px;
    background-position: -19px -19px;
    overflow: hidden;
    padding-bottom: 20px;
    /* Animation */
    animation: moveDots 10s linear infinite;
}
.offer-section h2 span {
    color: #EEA22A;
}
.offer-section p {
    margin: 0 auto;
}
.offer-section h2 {
    margin: 20px 0px 13px;
}

.offer-flex-sec {
    display: flex;
    gap: 27px;
    margin-top: 50px;
    padding-left: 10px;
    padding-right: 10px;
}
.offer-flex-sec {
    display: flex;
    gap: 27px;
    margin-top: 50px;
}
.offer-personal img {
    height: 247px;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.offer-personal h3 {
    font-size: 18px;
    text-align: left;
    padding-left: 13px;
    color: #1A5565;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 13px;
}
.offer-personal p {
    width: 345.31px;
    text-align: left;
    margin-left: 13px;
    margin-right: 13px;
}
.offer-personal .button a {
    padding: 15px;
    width: auto;
    margin-top: 20px;
    margin-bottom: 25px;
    height: 23px;
    justify-content: space-between;
    background: #1e5665;
    color:white;
}
.offer-personal .button a.is-loading {
    opacity: 0.6;
    pointer-events: none;
}
.offer-personal .button a:hover {
    opacity: 0.85;
}
.offer-personal {
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);

}


.offer-personal > .description {
    height: auto;
}

.offer-personal .order-form {
    display: flex; align-items: center; justify-content: right;

    .button {
        flex: 100%; margin-left: 15px;margin-right: 15px;
    }
}

.quantity{

}



.Get-in-touch {
    /* background: url(/images/Getintouch.png); */
    height: 738px;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
    overflow: hidden;
}
.Get-in-touch-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.Get-in-touch-container img {
    position: absolute;
    left: 0;
    height: 100%;
    opacity: 90%;
    object-fit: cover;
}
.form {
    width: 678px;
    z-index: 9;
}
.form h2 {
    color: lemonchiffon;
    margin-top: 25px;
}
.form h2 span {
    color: #EEA22A;
}
.formsta input {
    border-radius: 0.25rem;
    width: 42%;
    height: 47px;
    border: none;
    padding: 10px;
    padding-left: 30px;
    font-size: 16px;
    color: #1A5565;
    font-family: "Poppins", sans-serif;
}
form {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}
input::placeholder {
    color: #1A5565 !important;
    font-weight: 400;
    font-size: 16px;
}
textarea {
    width: 98.5%;
    height: 144px;
    border-radius: 0.25rem;
    border: none;
    padding-left: 30px;
    font-size: 16px;
    padding-top: 20px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
textarea::placeholder {
    color: #1A5565;
}
.Get-in-touch-container p {
    color: #fff;
    padding-bottom: 30px;
    padding-top: 15px;
}
input[type="submit"] {
    width: 100%;
    padding: 20px 3px;
    height: auto;
    margin-bottom: 30px;
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    background: #EEA22A;
    color: #fff;
    border: 1px solid #eea22a;
    cursor: pointer;
}
input[type="submit"]:hover {
    background: #ffff;
    color: #eea22a;
    border: 1px solid #eea22a;
}
.footer {
    /* background: linear-gradient(65deg, #1e5665, #4b9ea5, #1e5665); */
    background: linear-gradient(65deg, #1d5565, #2b6f83df, #1d5565);
}
.button.first-btn a {
    background: #EAA22A;
    color: #fff;
    border-color: #EAA22A;
    border-radius: 0.25rem;
}
.button.first-btn:hover a {
    /* background: #1A5565; */
    background: white;
    color: #1A5565;
    /* color: #fff; */
    border-color: white;
}
.button.first-btn.on-white:hover a {
    /* background: #1A5565; */
    color: #ffffff  !important;
    /* color: #fff; */
    opacity: 0.9;
    background: #EAA22A !important;

}
.button.first-btn a img.image-sec {
    display: block;
}
.button.first-btn a img.image-fir {
    display: none;
}
.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.footer-container h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
.footer-container h4 a {
    color: #fff;
    text-decoration: none;
}
.footer-placeholder {
    width: 10vw;
    display: block;
}

.page-header {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.page-header-container {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    align-items: flex-start;
    width: 100%;
    z-index: 999;
    padding-left: 20px;
}

img.menuimg {
    display: none;
}
img.menuclick {
    width: 25px;
    /* Touch-friendly: größere Klickfläche */
    padding: 20px;
    box-sizing: content-box;
    cursor: pointer;
}
.page-header {
    cursor: pointer;
}
.navigation img.menuimg.menubar1.menuclick.close {
    display: block;
    position: fixed;
    top: 36px;
    right: 224px;
    padding: 20px;
    box-sizing: content-box;
}

/*******product-css********/
.header.product {}

.header.product .page-header {
    position: unset;
    padding-top: 0;
}
.header-container .offers {

}
.header.product .header-container {
    height: auto;
    background: linear-gradient(65deg, #1d5565, #2b6f83df, #1d5565) !important;
    background-size: 600% 600%;
    animation: gradientAnimation 30s ease infinite;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 100%;
}

.header.product .header-container .header-content {
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
}

.header.product .header-container .header-content p {
    color: rgba(255, 255, 255, 0.85);
    margin: 10px auto 0;
    width: 100%;
    max-width: 700px;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 300;
}

.header.product .header-container .header-content h1 {
    color: #fff;
    margin: 0;
    font-weight: 600;
    line-height: 1.15;
    text-transform: none;
    font-size: 2.5rem;
}

.header.product .header-container .header-content h1 span {
    background: linear-gradient(65deg, #ECA32A, #F5B24A, #FFD580, #F5B24A, #ECA32A);
    background-size: 300% 300%;
    animation: gradientAnimation 20s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header.product .page-header .page-header-container {
    padding-bottom: 16px;
    align-items: center;
}

.header.product .page-header.is-sticky .page-header-container {
    padding-bottom: 2px;
}

.header.product  .menu-ul ul li a {
    color: #1e5665;
}

.header li:hover a {
    text-shadow: 2 2 5px silver;
    text-decoration: underline;
}

.header.product  ul {
    margin: 0;
}
.product-sec .offer-personal {
    max-width: 400px;
    width: 100%;
}
.product-sec .offer-personal h4 {
    text-align: left;
    padding-left: 15px;
    color: #1A5565;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
}
.header.product .page-header.is-sticky {
    position: fixed;
    padding-top: 10px;
}
.header.product .page-header.is-sticky a {
    color: #fff;
}
.offer-section.product-sec {
    overflow: visible;
}
.offer-section.product-sec .offer-personal h3 {
    font-size: 18px;
    text-align: left;
    padding-left: 13px;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 13px;
    background:  #1e5665;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: -6px;
    position: relative;
}
.product-sec .offer-personal img {
    height: 245px;
    width: 100%;
    object-fit: contain;

}
.product-sec .offer-personal img.arrow-img {
    height: 20px;
}
.product-sec .button a img {
    width: 20px;
    padding-top: 3px;
}
.offer-section.product-sec .offer-flex-sec {
    display: grid;
    gap: 27px;
    margin-top: 50px;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    justify-content: center;
}
#contactsec {
    scroll-margin-top: 80px;
    padding-top:60px;
    padding-bottom: 50px;
    /* background: linear-gradient(65deg, #1e5665, #4b9ea5, #1e5665); */
    background: linear-gradient(65deg, #1d5565, #2b6f83df, #1d5565);
    background-size: 600% 600%;
    animation: gradientAnimation 30s ease infinite;
}

@media only screen and (max-width: 1215px) and (min-width: 767px) {
    body > div {
        /* padding: 15px; */
        /* margin: 15px; */
        padding-left: 15px;
    }
}


@media only screen and (max-width: 767px) and (min-width: 300px){

    .page-header.is-sticky .menu {
        left: 0px;
        width: 40px;
    }

    .footer-container h4 {
        font-size: 9px;
    }

    .footer-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-placeholder {
        display: none;
    }

    .instagram-link {
        display: none;
    }

    .menu-ul ul li:after {
        width: 0px;
    }
    .menuimg.menubar2.menuclick {
        left: 0px !important;
    }

    .product-sec .offer-personal .button img {
        display: none;
    }
    #contactsec {
        margin-top: 40px;
    }
    .offer-section.product-sec .offer-flex-sec {
        grid-template-columns: unset;
        width: 100%;
        display: flex;
        padding-left: unset;
        max-width: 90%;
        min-width: 90%;
        margin: 0 auto;
        padding-top: 40px;
    }
    .header.product .page-header {
        padding-bottom: 0;
    }
    .header.product .page-header .page-header-container {
        padding-top: 10px;
    }
    .offer-section.product-sec {
        padding: unset;
    }
    .header.product .header-container .header-content {
        padding: 40px 20px;
        text-align: center;
    }
    .header.product .header-container .header-content h1 {
        padding-bottom: 10px;
        width: 100%;
        font-size: 1.8rem;
    }
    .header.product .header-container .header-content p {
        width: auto;
        font-size: 15px;
    }

    .navigation img.menuimg.menubar1.menuclick.close {
        display: block;
        position: fixed;
        top: 15px;
        right: 0px;
        width: 22px !important;
        padding: 20px;
        box-sizing: content-box;
    }
    .navigation img.menuimg.menubar1.menuclick {
        z-index: 99999999999;
        display: block;
        width: 24px;
    }
        .header-content .button.first-btn a {
        border-color: #eaa22a;
    }
        img.logo-menuclick {
        position: absolute;
        top: 17px;
        left: 20px;
        display: block !important;
        width: 40%;
    }
        
        .navigation.open {
        z-index: 9;
    }
    .navigation img.menuclick {
        position: fixed;
        top: 14px;
        right: 0px;
        z-index: 999;
    }
    .header-container {
        padding-top: 25px;
        flex-wrap: wrap;
        /* background: url(/images/Panels-mobile.png); */
        width: 100%;
        height: 100%;
    }
    .header-image {

    }
    .page-header-container {
        padding: 0 20px;
        z-index: 999;
    }
    .page-header.is-sticky img.menuimg.menubar1 {
        display: block;
        position: relative;
        top: -25px;
    }
    .page-header.is-sticky img.menuimg.menubar2 {
        display: none;
    }
        .page-header.is-sticky .page-header-container {
        align-items: center;
    }
    .page-header.is-sticky img.is-sticky-logo {
        display: block;
        width: 49%;
    }
    .page-header.is-sticky {
        padding: 15px 0;
    }
        .menu img {
        display: none;
    }
    img.page-header-logo {
        width: 40%;
        margin-left: 20px;
    }
    img.menuimg.menubar2 {
        display: block;
    }
    .page-header-container {
        align-items: center;
    }
        .offer-section {
        padding-top: 0px !important;
    }
    .footer-container {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    footer.footer {
        overflow-x: hidden;
    }
    .form {
        width: 100%;
        z-index: 9;
        padding: 50px 20px;
    }
    .Get-in-touch {
        height: 100%;
        overflow: unset;
        margin-top: 50px;
    }
    .formsta input {
        width: 100%;
    }
    .Get-in-touch-container img {
        display: none;
    }
    .offer-flex-sec {
        flex-wrap: wrap;
        width: 100%;
        max-width: 90%;
        min-width: 90%;
        margin: 0 auto;
        margin-top: 50px;
    }
    .offer-flex-sec .button a {
        width: 83%;
    }
    .offer-personal img {
        width: 100%;
    }
    .page-header {
        position: relative;
    }
    .page-header {
        padding: 20px 0px;
        background: white;
    }
    .menu-ul ul li a {
        color: #1A5565;
    }
    .header-container {
        flex-wrap: wrap;
    }
    .header-image {
        width: 100%;
    }
    .header-image img {
        width: 100%;
    }
    .header-content h1 br {
        display: none;
    }
    .header-content {
        padding: 0px 20px 30px;
    }
    .header-content p {
        width: 100%;
        margin-bottom: 40px;
        margin-top: 0;
        color: #FFF;
        text-align: center;
        font-size: 1.1rem;
    }
    .header-content .button a {
        justify-content: center;
        color: #fff;
        border-color: #fff;
    }
    .header-content  .button a:hover {
        background: #ffffff;
        color: #1a5565;
    }

    .button a:hover img.image-fir {
        display: block !important;
    }
    .button a:hover img.image-sec {
        display: none !important;
    }
    img.image-sec {
        display: block;
    }
    img.image-fir {
        display: none;
    }
    .what-content {
        padding: 0 20px;
        gap: 15px;
        order:2 ;
        margin-top: -40px;
    }
    .what-content p{
        font-size: 1.1rem;
    }

    #svg-placeholder svg{
        transform: scale(1.5) !important;
    }
    h2 {
        text-align: center;
        font-size: 1.7rem !important;
    }
    .What-We-Do {
        display: flex;
        flex-direction: column;
        padding-left:10px;
        padding-top: 30px;
        overflow-x: hidden;
    }
    .what-we-do-title{
        text-align: left;
        font-size: 1.7rem !important;
    }
    .what-image {
        order: 1 ;
        padding: 0 20px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .what-image img {
        width: 100%;
    }
    .Mission-container h2 {padding-top: 15px;         line-height: 1.2;}
    .header-content h1 {
        font-size: 2.2rem;
        text-align: center;
        color: #ffffff;
    }
    .buttons {
        display: flex;
        flex-direction: column;
    }
    .button {
        width: 100%;
        text-align: center;
    }
    .button a {
        width: 88%;
        justify-content: space-between;
    }
    .Mission-container p {
        width: fit-content;
        padding-left: 20px;
        padding-right: 20px;
    }

    .Mission {
        height: 720px;
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        position: relative;
        height: 100%;
        margin-bottom: 50px;
        padding-bottom: 50px;
    }
    .Mission-flex-box {
        display: flex;
        position: unset;
        bottom: 0;
        gap: 27px;
        margin: 0 auto;
        padding: 0!important;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-top: 30px;
    }
    .Mission-box {
        background: #fff;
        display: grid;
        gap: 0;
        padding: 25px 15px;
        width: 100%;
    }
    .Mission-box p {
        width: fit-content;
        padding: 0;

    }
    .menu-ul ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
    }

    .menu-ul ul li {
        margin: 0;
        padding: 0;
    }

    .menu-ul ul li a {
        font-size: 16px;
    }
    .offer-section p {
        width: fit-content;
    }
    .offer-section h2 {
        margin: 20px 65px 13px;
    }
    .Mission-container {
        padding-top: 50px;
        adding-left: 20px;
        padding-right: 20px;
        padding-bottom: 50px;
    }

    /* Sprache nur im geöffneten Mobile-Menü zeigen */
    .menu-ul .language-list {
        display: none !important;
    }
    .language-list-mobile {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 12px 0 4px;
    }
    .language-list-mobile li {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .language-button {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 18px;
    }
}
#svg-placeholder svg {
    transform: scale(5);
}
.gradient-text {
    /* background: linear-gradient(65deg, #1e5665, #4b9ea5, #1e5665); */
    background: linear-gradient(65deg, #1d5565, #2b6f83df, #1d5565);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 6px
}
.text-underline {
    text-decoration: underline
}
.gradient-text-secondary {
    background: linear-gradient(65deg, #ECA32A, #F5B24A, #FFD580, #F5B24A, #ECA32A);
    background-clip: border-box;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* Default styles */
.pardots-image {
    height: 100%;
    z-index: 100;
    position: absolute;
    top: 0;
    opacity: 65%;
    left: 20vw;
}

/* Media query to hide the image on screens smaller than 768px */
@media (max-width: 768px) {
    body {
       width: 100vw;
    }
    .pardots-image {
        display: none;
    }
    .header-image img {
        opacity: 10% !important;
        right: 0 !important;
        height: 100% !important;
    }
}

@keyframes moveDots {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: 40px 40px; /* Adjust the end position to cover the desired range */
    }
}
.grid-contact {
    display: grid;
    margin: 0 auto;
    padding: 20px;
    margin-left: 120px;
    margin-right: 120px;
    grid-template-columns: 1fr 2fr;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
}
.grid-contact .grid-second-col p {
    color: white;
}
.formsta{
    padding-top: 20px;
}
.grid-second-col img {
    width: 100%;
}

/* ─── Content Page Sections ────────────────────────────── */
.offer-section.content-page-section {
    text-align: left;
    background-image: none;
    animation: none;
    padding: 48px 20px;
}

.offer-section.content-page-section:nth-child(even) {
    background: #fffbf0;
}

.offer-section.content-page-section:nth-child(odd) {
    background: #fff;
}

/* ─── Teal-Hintergrund-Sektionen (wie Mission auf LP) ── */
.offer-section.content-page-section.content-page-section--teal {
    background: linear-gradient(65deg, #1d5565, #2b6f83df, #1d5565) !important;
    background-size: 600% 600%;
    animation: gradientAnimation 30s ease infinite;
    position: relative;
}

.content-page-section--teal .content-page-section__inner h2 {
    color: #fff;
}

.content-page-section--teal .content-page-section__inner h2 span {
    background: linear-gradient(65deg, #ECA32A, #F5B24A, #FFD580, #F5B24A, #ECA32A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-page-section--teal .content-page-section__inner p {
    color: rgba(255, 255, 255, 0.85);
}

.content-page-section--teal .content-page-section__inner strong {
    color: #fff;
}

.content-page-section--teal .content-page-section__inner li {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #EAA22A;
    color: rgba(255, 255, 255, 0.85);
}

.content-page-section--teal .content-page-section__inner li strong {
    color: #FFD580;
}

.content-page-section--teal .content-page-cta-link {
    color: #fff;
    border-color: #fff;
}

.content-page-section--teal .content-page-cta-link:hover {
    background: #fff;
    color: #1A5565;
}

/* ─── Section-Tag (h5 Label wie auf LP) ────────────────── */
.content-page-section__tag {
    font-size: 18px;
    font-weight: 400;
    color: #EAA22A;
    margin: 0 0 12px;
    text-align: left;
}

.content-page-section__tag span {
    padding: 5px 6px;
    background: #EAA22A;
    color: #fff;
    margin-right: 8px;
    font-weight: 500;
}

.content-page-section--teal .content-page-section__tag {
    color: #EAA22A;
}

.content-page-section--teal .content-page-section__tag span {
    background: #EAA22A;
    color: #fff;
}

/* ─── Gradient-Text auf Content-Seiten ─────────────────── */
.content-page-section__inner h2 .cs-gradient-teal {
    background: linear-gradient(65deg, #1d5565, #2b6f83df, #1d5565);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 4px;
}

.content-page-section__inner h2 .cs-gradient-gold {
    background: linear-gradient(65deg, #ECA32A, #F5B24A, #FFD580, #F5B24A, #ECA32A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-page-section__inner {
    max-width: 960px;
    margin: 0 auto;
}

.content-page-section__inner h2 {
    color: #1A5565;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-page-section__inner h2 span {
    color: #EAA22A;
    font-weight: 600;
}

.content-page-section__inner h3 {
    color: #1A5565;
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-page-section__inner h3 span {
    color: #EAA22A;
}

.content-page-section__inner p {
    line-height: 1.7;
    margin-bottom: 14px;
    color: #484848;
    font-weight: 300;
}

.content-page-section__inner strong {
    color: #1A5565;
    font-weight: 600;
}

.content-page-section__inner ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.content-page-section__inner li {
    padding: 10px 14px;
    background: rgba(255, 251, 240, 0.7);
    border-left: 3px solid #EAA22A;
    color: #484848;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
}

.offer-section.content-page-section:nth-child(even) .content-page-section__inner li {
    background: rgba(255, 255, 255, 0.8);
}

.content-page-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(29, 85, 101, 0.08);
}

.content-page-table th,
.content-page-table td {
    border: 1px solid rgba(26, 85, 101, 0.1);
    padding: 14px 18px;
    text-align: left;
    font-size: 16px;
}

.content-page-table th {
    background: #1A5565;
    font-weight: 600;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.content-page-table td {
    color: #484848;
    font-weight: 300;
}

.content-page-table tr:nth-child(even) td {
    background: rgba(255, 251, 240, 0.6);
}

.content-page-table tr:hover td {
    background: rgba(234, 162, 42, 0.08);
}

.content-page-table td.total,
.content-page-table td.total strong {
    color: #1A5565;
    font-weight: 600;
    background: rgba(234, 162, 42, 0.12);
}

/* ─── Team Grid ─────────────────────────────────────────── */
.cs-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cs-team-card {
    background: #fff;
    border: 1px solid rgba(26, 85, 101, 0.12);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.25s ease;
}

.cs-team-card:hover {
    box-shadow: 0 12px 32px rgba(29, 85, 101, 0.12);
}

.cs-team-card__photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--cs-gold, #EAA22A);
}

.cs-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-team-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cs-teal, #1d5565);
    margin: 0 0 0.25rem;
}

.cs-team-card__role {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cs-gold, #EAA22A);
    margin: 0 0 0.75rem;
}

.cs-team-card__desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #475569;
    margin: 0;
}

.cs-team-card__photo--placeholder {
    background: var(--cs-teal, #1d5565);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-team-card__initials {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

/* ─── Content Page CTA Link ─────────────────────────────── */
.content-page-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    line-height: 26px;
    color: #1A5565;
    padding: 14px 24px;
    border-radius: 0.25rem;
    border: 1px solid #1A5565;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    margin-top: 0.5rem;
}

.content-page-cta-link:hover {
    background: #1A5565;
    color: #fff;
}

.content-page-cta-link--primary {
    background: #EAA22A;
    color: #fff;
    border-color: #EAA22A;
}

.content-page-cta-link--primary:hover {
    background: #c9851a;
    border-color: #c9851a;
    color: #fff;
}

/* ─── Content Page Images ───────────────────────────────── */
.content-page-image {
    width: 100%;
    border-radius: 1rem;
    margin: 1.5rem 0;
    box-shadow: 0 8px 24px rgba(29, 85, 101, 0.1);
}

.content-page-image--hero {
    max-height: 420px;
    object-fit: cover;
}

/* Bild-Text Side-by-Side Layout */
.cs-image-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin: 2rem 0;
}

.cs-image-text--reverse {
    direction: rtl;
}

.cs-image-text--reverse > * {
    direction: ltr;
}

.cs-image-text__img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(29, 85, 101, 0.1);
    object-fit: cover;
    max-height: 360px;
}

.cs-image-text__content h3 {
    color: var(--cs-teal, #1d5565);
    font-weight: 600;
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
}

.cs-image-text__content p {
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Standort-Karten */
.cs-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.cs-location-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(26, 85, 101, 0.12);
    background: #fff;
}

.cs-location-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cs-location-card__body {
    padding: 1.25rem;
}

.cs-location-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cs-teal, #1d5565);
    margin: 0 0 0.5rem;
}

.cs-location-card__text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .cs-image-text {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cs-image-text--reverse {
        direction: ltr;
    }

    .cs-team-grid {
        grid-template-columns: 1fr;
    }
}

.order-page {
    background: #f4f7f8;
    padding: 60px 20px 80px;
}

.order-hero {
    max-width: 960px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #1A5565;
}

.order-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1A5565;
    text-decoration: none;
    font-weight: 500;
}

.order-back-icon {
    font-size: 18px;
    line-height: 1;
}

.order-back:hover {
    opacity: 0.75;
}

.order-title {
    font-size: 36px;
    font-weight: 600;
    margin: 0;
}

.order-subtitle {
    margin: 0;
    font-size: 18px;
    color: rgba(26, 85, 101, 0.8);
}

.order-content {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.order-summary {
    flex: 1 1 45%;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-summary-image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.order-summary-name {
    font-size: 22px;
    color: #1A5565;
    margin: 0;
}

.order-summary-description {
    margin: 0;
    line-height: 1.6;
    color: rgba(26, 85, 101, 0.85);
}

.order-summary-pricing {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-summary-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #1A5565;
    background: rgba(26, 85, 101, 0.06);
    padding: 10px 14px;
    border-radius: 8px;
}

.order-summary-price-row .label {
    opacity: 0.85;
}

.order-summary-price-row .value {
    font-size: 16px;
}

.order-summary-features {
    margin: 0;
    padding-left: 18px;
    color: rgba(26, 85, 101, 0.9);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-form-card {
    flex: 1 1 55%;
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.order-form-card h2 {
    margin-top: 0;
    color: #1A5565;
    font-size: 24px;
}

.order-form-description {
    margin-bottom: 24px;
    color: rgba(26, 85, 101, 0.8);
    line-height: 1.5;
}

.order-form-hint {
    margin: -12px 0 8px;
    font-size: 14px;
    color: rgba(26, 85, 101, 0.7);
}

.order-errors {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.4);
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #9b1c1c;
}

.order-errors-title {
    margin: 0 0 6px;
    font-weight: 600;
}

.order-errors ul {
    margin: 0;
    padding-left: 18px;
}

.order-form-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-group label {
    font-weight: 600;
    color: #1A5565;
}

.field-group input,
.field-group textarea,
.field-group select {
    border: 1px solid rgba(26, 85, 101, 0.2);
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 16px;
    color: #1A5565;
    font-family: "Outfit", sans-serif;
}

.field-group textarea {
    resize: vertical;
}

.field-row {
    display: flex;
    gap: 16px;
}

.field-row .field-group {
    flex: 1;
}

.order-submit-button {
    background: #1A5565;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.order-submit-button:hover {
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .order-content {
        flex-direction: column;
    }

    .order-summary,
    .order-form-card {
        width: auto;
    }
}

@media (max-width: 600px) {
    .order-hero {
        margin-bottom: 24px;
    }

    .order-title {
        font-size: 28px;
    }

    .field-row {
        flex-direction: column;
    }
}



/* ============================================================ */
/* CS Nav – Landingpage Navigation (aus cs_nav.css migriert)     */
/* ============================================================ */

/* ─────────────────────────────────────────────────────────────
   Chaco Solar – Hauptnavigation (V1 Topbar + Mobile Overlay)
   CI-Farben: Teal #1d5565 / #2b6f83, Gold #EAA22A, Creme #fffbf0
   ────────────────────────────────────────────────────────────── */

.cs-nav {
  --cs-teal: #1d5565;
  --cs-teal-deep: #164956;
  --cs-teal-hover: #2b6f83;
  --cs-gold: #EAA22A;
  --cs-gold-deep: #c9851a;
  --cs-cream: #fffbf0;
  --cs-cream-soft: #f4ecd9;
  --cs-ink: #0e343c;

  position: relative;
  z-index: 100000;
  width: 100%;
  color: #fff;
  font-family: 'Outfit', 'Poppins', 'Helvetica Neue', sans-serif;
}

.header:not(.product) .cs-nav__desktop::before {
  content: '';
  position: absolute;
  inset: -8px -36px -8px 28%;
  background: radial-gradient(ellipse at center, rgba(59, 98, 116, 0.7) 0%, rgba(59, 98, 116, 0.5) 35%, rgba(59, 98, 116, 0.2) 70%, rgba(59, 98, 116, 0) 100%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

/* Subpages: Header bekommt eigenen Stacking-Context + Teal-Hintergrund hinter der Nav */
.header.product {
  position: relative;
  z-index: 100000;
  background: #fff;
  overflow: visible;
}
.header.product .header-container { position: relative; z-index: 1; }
.header.product .page-header { overflow: visible; }
main[role="main"] > .offer-section,
main[role="main"] > section { position: relative; z-index: 0; }

/* Subpages: dunkler Nav-Text auf weißem Header */
.header.product .cs-nav,
.header.product .cs-nav__link,
.header.product .cs-nav__lang-trigger,
.header.product .cs-nav__lang-code { color: var(--cs-teal, #1d5565); }
.header.product .cs-nav__chevron path,
.header.product .cs-nav__lang-trigger svg path { stroke: var(--cs-teal, #1d5565); }
.header.product .cs-nav__underline { background: var(--cs-gold, #EAA22A); }
.header.product .cs-nav__burger span { background: var(--cs-teal, #1d5565); }

/* Sticky auf Subpages: Text zurück auf weiß, da Header dann teal ist */
.header.product .page-header.is-sticky .cs-nav__link,
.header.product .page-header.is-sticky .cs-nav__lang-trigger,
.header.product .page-header.is-sticky .cs-nav__lang-code { color: #fff; }
.header.product .page-header.is-sticky .cs-nav__chevron path,
.header.product .page-header.is-sticky .cs-nav__lang-trigger svg path { stroke: #fff; }
.header.product .page-header.is-sticky .cs-nav__burger span { background: #fff; }

.cs-nav .page-header-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 40px 0;
  max-width: 1440px;
  margin: 0 auto;
}

.cs-nav__logo-link { flex-shrink: 0; display: block; }

/* ─── Desktop ─────────────────────────────────────────────── */
.cs-nav__desktop {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex: 1;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 14px;
}

.cs-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}

.cs-nav__item { position: static; }

.cs-nav__link {
  background: transparent;
  border: none;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  transition: opacity .2s;
}
.cs-nav__link:hover { color: #fff; }
.cs-nav__desktop.has-open .cs-nav__item:not(.is-open) .cs-nav__link { opacity: .55; }

.cs-nav__chevron { transition: transform .2s; opacity: .85; }
.cs-nav__item.is-open .cs-nav__chevron { transform: rotate(180deg); }

.cs-nav__underline {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--cs-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.cs-nav__item.is-open .cs-nav__underline,
.cs-nav__link:hover .cs-nav__underline { transform: scaleX(1); }

/* Dropdown-Panel */
.cs-nav__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--cs-cream);
  border-top: 3px solid var(--cs-gold);
  box-shadow: 0 20px 40px rgba(14, 52, 60, .25);
  color: var(--cs-ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  z-index: 100001;
}
.cs-nav__item.is-open .cs-nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear 0s;
}
.cs-nav__panel-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px 60px 42px;
  display: grid;
  gap: 36px;
}

.cs-nav__group-title {
  display: inline-block;
  background: var(--cs-gold);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 14px;
  font-weight: 600;
}

.cs-nav__group-item {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid rgba(14, 52, 60, .1);
  color: var(--cs-ink);
  text-decoration: none;
  transition: padding-left .15s, color .15s;
}
.cs-nav__group-item:hover { padding-left: 6px; color: var(--cs-teal); }

.cs-nav__leaf-label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--cs-teal-deep);
}
.cs-nav__leaf-hint {
  display: block;
  font-size: 12px;
  opacity: .65;
  margin-top: 2px;
  color: var(--cs-ink);
}

.cs-nav__feature {
  background: var(--cs-cream-soft);
  border-left: 3px solid var(--cs-gold);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cs-nav__feature-tag {
  display: inline-block;
  background: var(--cs-gold);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 9px;
  font-weight: 600;
}
.cs-nav__feature-title {
  font-size: 21px;
  font-weight: 600;
  color: var(--cs-teal-deep);
  margin: 14px 0 8px;
  line-height: 1.25;
}
.cs-nav__feature-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--cs-ink);
  opacity: .8;
  margin: 0;
}
.cs-nav__feature-cta {
  align-self: flex-start;
  margin-top: 20px;
  background: var(--cs-teal-deep);
  color: #fff !important;
  text-decoration: none;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .2s;
}
.cs-nav__feature-cta:hover { background: var(--cs-teal-hover); }

/* Sprach-Umschalter */
.cs-nav__lang {
  position: relative;
  flex-shrink: 0;
  padding: 4px 0;
}
.cs-nav__lang-trigger {
  background: transparent;
  border: none;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 6px 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cs-nav__lang-code { font-weight: 600; }
.cs-nav__lang-pop {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(14, 52, 60, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 8px;
  min-width: 190px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility 0s linear .2s;
}
.cs-nav__lang.is-open .cs-nav__lang-pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .2s, transform .2s, visibility 0s linear 0s;
}
.cs-nav__lang-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  color: #fff !important;
  font-size: 13.5px;
  text-decoration: none;
  transition: background .15s;
}
.cs-nav__lang-opt:hover { background: rgba(255, 255, 255, .06); }
.cs-nav__lang-opt.is-active { background: rgba(234, 162, 42, .15); }
.cs-nav__lang-opt-code { margin-left: auto; opacity: .5; font-size: 11px; letter-spacing: 1px; }

/* Flag-Dots (simple linear-gradient – keine Bilder nötig) */
.cs-nav__lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

/* Burger (nur mobil) */
.cs-nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.cs-nav__burger span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  transition: transform .25s, opacity .2s;
}
.cs-nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cs-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.cs-nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Overlay ──────────────────────────────────────── */
.cs-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--cs-teal-deep);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
  overflow-y: auto;
  visibility: hidden;
}
.cs-mobile-overlay.is-open { transform: translateY(0); visibility: visible; }
.cs-mobile-overlay__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--cs-gold) 2px, transparent 2px);
  background-size: 28px 28px;
  opacity: .1;
  pointer-events: none;
}
.cs-mobile-overlay__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 130px;
}

.cs-mobile-nav { padding: 8px 0 20px; }
.cs-mobile-nav__item { border-bottom: 1px solid rgba(255, 255, 255, .08); }
.cs-mobile-nav__item:first-child { border-top: 1px solid rgba(255, 255, 255, .08); }
.cs-mobile-nav__btn {
  width: 100%;
  min-height: 56px;
  background: transparent;
  border: none;
  color: #fff !important;
  font: inherit;
  padding: 16px 20px;
  text-align: left;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 19px;
  font-weight: 500;
}
.cs-mobile-nav__label { display: flex; align-items: baseline; gap: 14px; }
.cs-mobile-nav__num {
  font-size: 11px;
  color: var(--cs-gold);
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  min-width: 20px;
}
.cs-mobile-nav__plus {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-gold);
  font-size: 24px;
  font-weight: 300;
  transition: transform .25s;
}
.cs-mobile-nav__plus.is-arrow { font-size: 20px; opacity: .7; }
.cs-mobile-nav__item.is-open .cs-mobile-nav__plus { transform: rotate(45deg); }

.cs-mobile-nav__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.2, .8, .2, 1);
  background: rgba(0, 0, 0, .18);
}
.cs-mobile-nav__item.is-open .cs-mobile-nav__sub { max-height: 1200px; }
.cs-mobile-nav__sub-inner { padding: 10px 20px 18px; }
.cs-mobile-nav__group + .cs-mobile-nav__group { margin-top: 14px; }
.cs-mobile-nav__group-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cs-gold);
  padding: 10px 14px 6px;
  font-weight: 600;
}
.cs-mobile-nav__link {
  display: block;
  min-height: 44px;
  padding: 12px 14px;
  color: #fff !important;
  text-decoration: none;
  font-size: 15.5px;
  border-radius: 6px;
}
.cs-mobile-nav__link:active { background: rgba(255, 255, 255, .06); }
.cs-mobile-nav__hint {
  display: block;
  font-size: 12px;
  opacity: .55;
  margin-top: 2px;
}

.cs-mobile-overlay__footer {
  margin-top: auto;
  padding: 22px 20px 34px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.cs-mobile-overlay__cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--cs-gold);
  color: #fff !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cs-mobile-overlay__cta:hover { background: var(--cs-gold-deep); }
.cs-mobile-overlay__langs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.cs-mobile-overlay__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff !important;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
}
.cs-mobile-overlay__lang.is-active {
  background: var(--cs-gold);
  border-color: var(--cs-gold);
}

/* ─── Breakpoint ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .cs-nav .page-header-container { padding: 14px 18px 0; }
  .cs-nav__desktop { display: none; }
  .cs-nav__burger { display: flex; }
}

/* ─── Platzhalter-Kategorieseiten ─────────────────────────── */
.category-item-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.category-item-list li {
  padding: 12px 14px;
  background: var(--cs-cream-soft, #f4ecd9);
  border-left: 3px solid var(--cs-gold, #EAA22A);
}
.category-item-list a { color: var(--cs-teal-deep, #164956); font-weight: 600; text-decoration: none; }
.category-item-list a:hover { color: var(--cs-gold-deep, #c9851a); }
.category-item-hint { display: block; font-size: 12.5px; opacity: .7; margin-top: 4px; }


/* ============================================================ */
/* Category Page – Hero + Cards                                 */
/* ============================================================ */
.cs-page-hero {
  background: linear-gradient(120deg, #1d5565 0%, #2b6f83 50%, #1d5565 100%);
  background-size: 200% 200%;
  animation: gradientAnimation 30s ease infinite;
  padding: 64px 24px 88px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cs-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(234, 162, 42, .25) 1.5px, transparent 0);
  background-size: 28px 28px;
  background-position: -10px -10px;
  pointer-events: none;
  opacity: .5;
}
.cs-page-hero__inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  z-index: 1;
}
.cs-page-hero__eyebrow {
  display: inline-block;
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #EAA22A;
  font-weight: 600;
  margin-bottom: 14px;
}
.cs-page-hero__title {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 auto;
  color: #fff;
  letter-spacing: -.01em;
}
.cs-page-hero__rule {
  display: block;
  width: 64px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #EAA22A, #FFD580);
}

.cs-category-group {
  background: #fffbf0;
  padding: 56px 24px;
}
.cs-category-group:nth-of-type(even) { background: #fff; }
.cs-category-group__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.cs-category-group__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.cs-category-group__tag {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1d5565;
  background: rgba(234, 162, 42, .15);
  border: 1px solid rgba(234, 162, 42, .35);
  padding: 8px 14px;
  border-radius: 999px;
}
.cs-category-group__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(29, 85, 101, .25), transparent);
}

.cs-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.cs-category-card {
  background: #fff;
  border: 1px solid rgba(29, 85, 101, .12);
  border-radius: 14px;
  padding: 22px 22px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.cs-category-card::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  width: 38px;
  height: 3px;
  background: #EAA22A;
  border-radius: 0 0 3px 3px;
}
.cs-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(29, 85, 101, .14);
  border-color: rgba(234, 162, 42, .55);
}
.cs-category-card__title {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #1d5565;
  margin: 6px 0 4px;
  line-height: 1.25;
}
.cs-category-card__title a {
  color: inherit;
  text-decoration: none;
}
.cs-category-card__title a:hover { color: #EAA22A; }
.cs-category-card__hint {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #EAA22A;
  font-weight: 600;
  margin: 0 0 10px;
}
.cs-category-card__body {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a52;
  margin: 0 0 14px;
  flex: 1;
}
.cs-category-card__cta {
  align-self: flex-start;
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d5565;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 85, 101, .25);
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.cs-category-card__cta:hover {
  color: #EAA22A;
  border-color: #EAA22A;
}

@media (max-width: 640px) {
  .cs-page-hero { padding: 48px 18px 64px; }
  .cs-category-group { padding: 40px 18px; }
}
