 /* =============== BASE ====================== */
 
 @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
 /*=============== VARIABLES CSS ===============*/
 
 :root {
     --header-height: 3.5rem;
     /*========== Colors ==========*/
     /*Color mode HSL(hue, saturation, lightness)*/
     --white-color: #fff;
     --coral-color: #fb774b;
     --darkgrey-color: #333;
     --gradient-grey: #ddd;
     --lightgrey-color: #eee;
     --color-title: #fb774b;
     --black: #000;
     --main-title: #1a1a1a;
     --main-text: #2c2c2c;
     --main-description: #4a4a4a;
     --cta: #007aac;
     --cta-hover: #005fa3;
     --box-shadow: rgba(0, 0, 0, 0.15);
     /*========== Font and typography ==========*/
     /*.5rem = 8px | 1rem = 16px ...*/
     --body-font: "Montserrat", sans-serif;
     --normal-font-size: 1rem;
     /*========== Font weight ==========*/
     --font-regular: 400;
     --font-semi-bold: 600;
     /*========== LOGO ==========  */
     --logo-width: 100px;
     --logo_height: 100px;
     --logo-width-small: 70px;
     --logo_height-small: 70px;
     /*========== z index ==========*/
     --z-tooltip: 10;
     --z-fixed: 100;
 }
 /*========== Responsive typography ==========*/
 
 @media screen and (min-width: 1024px) {
      :root {
         --normal-font-size: .938rem;
     }
 }
 
 * {
     padding: 0;
     margin: 0;
     box-sizing: border-box;
     font-family: var(--body-font);
     text-decoration: none;
 }
 
 html {
     scroll-behavior: smooth;
     /* height: 100%; */
 }
 
 body {
     min-height: 100vh;
     /* background: url(../img/background.png); */
     /* background-size: cover;
     background-position: center; */
 }
 
 ul {
     list-style: none;
 }
 
 a {
     text-decoration: none;
 }
 
 h1 {
     font-size: 2em;
     font-weight: 900;
     letter-spacing: 3px;
     margin: 0.67em 0;
 }
 
 h2 {
     font-size: 1.74rem;
     font-weight: 800;
     letter-spacing: 2px;
     margin: 0.75em 0;
 }
 
 h3 {
     font-size: 1.52rem;
     font-weight: 600;
     letter-spacing: -1px;
     margin: 0.83em 0;
 }
 
 h4 {
     font-size: 1.32rem;
     font-weight: 600;
     letter-spacing: -1px;
     margin: 0.95em 0;
 }
 
 h5 {
     font-size: 1.15rem;
     font-weight: bolder;
     letter-spacing: -1px;
     margin: 1.3em 0;
 }
 
 h6 {
     font-size: 1rem;
     font-weight: bolder;
     letter-spacing: -1px;
     margin: 1.67em 0;
 }
 /* =============== ENDE BASE ====================== */
 /* =============== NAVBAR ====================== */
 /* header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     background: #fff;
     box-shadow: 0 5px 10px rgba(0, 0, 0.1);
     padding: 0px 7%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     z-index: 1000;
 }
 
 header .logo img {
     /* font-weight: bolder;
        font-size: 25px;
        color: #333; 
     width: 140px;
 }
 
 header .navbar ul {
     list-style: none;
 }
 
 header .navbar ul li {
     float: left;
     position: relative;
 }
 
 header .navbar ul li .arrow {
     display: inline-block;
     transition: transform 0.3s ease;
 }
 
 header .navbar ul li a:hover .arrow {
     transform: rotate(90deg);
 }
 
 header .navbar ul li a {
     font-size: 20px;
     padding: 50px 20px;
     color: #333;
     display: flex;
     font-family: 'montserrat';
 }
 
 header .navbar ul li a .arrow {
     font-size: 20px;
     padding-left: 10px;
     color: #333;
     display: flex;
 }
 
 header .navbar ul li a:hover .arrow {
     color: #fff;
 }
 
 header .navbar ul li a:hover {
     background: #333;
     color: #fff;
 }
 
 header .navbar ul li ul {
     position: absolute;
     left: 0;
     width: 200px;
     background: #fff;
     display: none;
 }
 
 header .navbar ul li ul li {
     width: 100%;
     border-top: 1px solid rgba(0, 0, 0, .1);
 }
 
 header .navbar ul li ul li ul {
     left: 200px;
     top: 0;
 }
 
 header .navbar ul li:focus-within>ul,
 header .navbar ul li:hover>ul {
     display: initial;
 }
 
 #menu-bar {
     display: none;
 }
 
 header label {
     font-size: 20px;
     color: #333;
     cursor: pointer;
     display: none;
 }
 
 @media(max-width:991px) {
     header {
         padding: 20px;
     }
     header label {
         display: initial;
     }
     header .navbar {
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: #fff;
         border-top: 1px solid rgba(0, 0, 0, .1);
         display: none;
     }
     header .navbar ul li {
         width: 100%;
     }
     header .navbar ul li a {
         padding-top: 20px;
         padding-bottom: 20px;
     }
     header .navbar ul li ul {
         position: relative;
         width: 100%;
     }
     header .navbar ul li ul li {
         background: #eee;
         padding-left: 30px;
     }
     header .navbar ul li ul li ul {
         width: 100%;
         left: 0;
     }
     #menu-bar:checked~.navbar {
         display: initial;
     }
 } */
 /* =============== ENDE NAVBAR ====================== */
 /* =============== NAVBAR_SHOP ====================== */
 
 .navbar_shop {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     background: #fff;
     box-shadow: 0 5px 10px rgba(0, 0, 0.1);
     padding: 0px 7%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     z-index: 1000;
 }
 
 .navbar_shop .logo img {
     /* font-weight: bolder;
        font-size: 25px;
        color: #333; */
     width: 140px;
 }
 
 .navbar_shop .navbar ul {
     list-style: none;
 }
 
 .navbar_shop .navbar ul li {
     float: left;
     position: relative;
 }
 
 .navbar_shop .navbar ul li .arrow {
     display: inline-block;
     transition: transform 0.3s ease;
 }
 
 .navbar_shop .navbar ul li a:hover .arrow {
     transform: rotate(90deg);
 }
 
 .navbar_shop .navbar ul li a {
     font-size: 20px;
     padding: 50px 20px;
     color: #333;
     display: flex;
     font-family: 'montserrat';
     text-decoration: none;
 }
 
 .navbar_shop .navbar ul li a .arrow {
     font-size: 20px;
     padding-left: 10px;
     color: #333;
     display: flex;
 }
 
 .navbar_shop .navbar ul li a:hover .arrow {
     color: #fff;
 }
 
 .navbar_shop .navbar ul li a:hover {
     background: #333;
     color: #fff;
 }
 
 .navbar_shop .navbar ul li ul {
     position: absolute;
     left: 0;
     width: 200px;
     background: #fff;
     display: none;
 }
 
 .navbar_shop .navbar ul li ul li {
     width: 100%;
     border-top: 1px solid rgba(0, 0, 0, .1);
 }
 
 .navbar_shop .navbar ul li ul li ul {
     left: 200px;
     top: 0;
 }
 
 .navbar_shop .navbar ul li:focus-within>ul,
 .navbar_shop .navbar ul li:hover>ul {
     display: initial;
 }
 
 #menu-bar {
     display: none;
 }
 
 .navbar_shop label {
     font-size: 20px;
     color: #333;
     cursor: pointer;
     display: none;
 }
 
 @media(max-width:991px) {
     .navbar_shop {
         padding: 20px;
     }
     .navbar_shop label {
         display: initial;
     }
     .navbar_shop .navbar {
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: #fff;
         border-top: 1px solid rgba(0, 0, 0, .1);
         display: none;
     }
     .navbar_shop .navbar ul li {
         width: 100%;
     }
     .navbar_shop .navbar ul li a {
         padding-top: 20px;
         padding-bottom: 20px;
     }
     .navbar_shop .navbar ul li ul {
         position: relative;
         width: 100%;
     }
     .navbar_shop .navbar ul li ul li {
         background: #eee;
         padding-left: 30px;
     }
     .navbar_shop .navbar ul li ul li ul {
         width: 100%;
         left: 0;
     }
     #menu-bar:checked~.navbar {
         display: initial;
     }
 }
 /* =============== ENDE NAVBAR_SHOP ====================== */
 /* =============== SECTIONS_HB ====================== */
 
 .section {
     display: flex;
     margin: 0;
     padding: 130px;
     min-height: 100vh;
     width: 100%;
 }
 /* -----------Home Section------------ */
 
 #home {
     position: relative;
 }
 
 #home::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url(../img/wave_coral.svg)no-repeat bottom center / cover;
     /*   overflow: hidden; */
     opacity: 0.3;
     z-index: -1;
 }
 
 .hero-main-title {
     font-size: 64px;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 24px;
     color: var(--main-title);
     letter-spacing: -0.02em;
 }
 /* Ebene 2 - Wertversprechen */
 
 .hero-value-proposition {
     font-size: 32px;
     font-weight: 600;
     line-height: 1.3;
     margin-bottom: 20px;
     color: var(--main-text);
     letter-spacing: -0.01em;
 }
 /* Ebene 3 - Emotionaler Slogan */
 
 .hero-slogan {
     font-size: 24px;
     font-weight: 400;
     line-height: 1.4;
     margin-bottom: 16px;
     color: var(--color-title);
     /* Orange Akzentfarbe */
     font-style: italic;
 }
 /* Ebene 4 - Erklärungstext */
 
 .hero-description {
     font-size: 18px;
     font-weight: 400;
     line-height: 1.6;
     margin-bottom: 32px;
     color: var(--main-description);
     max-width: 600px;
 }
 /* Ebene 5 - Call-to-Action Button */
 
 .hero-cta-button {
     font-size: 20px;
     font-weight: 600;
     line-height: 1.2;
     padding: 16px 32px;
     background-color: var(--cta);
     color: white;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     text-decoration: none;
     display: inline-block;
     transition: all 0.3s ease;
 }
 
 .hero-cta-button:hover {
     background-color: var(--cta-hover);
     transform: translateY(-2px);
 }
 /* Mobile Responsive Design */
 
 @media (max-width: 1191px) {
     .hero-main-title {
         text-align: center;
         font-size: 40px;
         margin-bottom: 16px;
     }
     .hero-value-proposition {
         font-size: 28px;
         text-align: center;
         margin-bottom: 16px;
     }
     .hero-slogan {
         text-align: center;
         font-size: 20px;
         margin-bottom: 12px;
     }
     .hero-description {
         text-align: center;
         font-size: 16px;
         margin-bottom: 24px;
     }
     .hero-cta-button {
         font-size: 18px;
         margin-left: 25%;
         padding: 14px 28px;
     }
 }
 
 @media (max-width: 768px) {
     .hero-main-title {
         font-size: 40px;
         margin-bottom: 16px;
     }
     .hero-value-proposition {
         font-size: 28px;
         margin-bottom: 16px;
     }
     .hero-slogan {
         font-size: 20px;
         margin-bottom: 12px;
     }
     .hero-description {
         font-size: 16px;
         margin-bottom: 24px;
     }
     .hero-cta-button {
         font-size: 18px;
         padding: 14px 28px;
         margin-left: auto;
     }
 }
 
 @media (max-width: 480px) {
     .hero-main-title {
         font-size: 32px;
     }
     .hero-value-proposition {
         font-size: 24px;
     }
     .hero-slogan {
         font-size: 18px;
     }
     .hero-description {
         font-size: 16px;
     }
     .hero-cta-button {
         font-size: 16px;
         padding: 12px 24px;
         width: 100%;
         text-align: center;
     }
 }
 /* Container für die gesamte Hero-Sektion */
 
 .hero-container {
     display: flex;
     max-width: 1200px;
     margin: 0 auto;
     padding: 60px 20px;
     text-align: left;
 }
 /* Flexbox Layout für Text und Bild */
 
 .hero-content {
     padding-top: 80px;
     display: flex;
     align-items: center;
     gap: 30px;
 }
 
 .hero-text {
     flex: 1;
     max-width: 600px;
 }
 
 .hero-image {
     flex: 1;
     max-width: 900px;
 }
 
 .hero-image img {
     width: 100%;
     height: auto;
     border-radius: 12px;
 }
 
 @media (max-width: 768px) {
     .hero-content {
         flex-direction: column;
         gap: 40px;
         text-align: center;
     }
     .hero-container {
         padding: 40px 20px;
     }
 }
 /* -----------ENDE Home Section------------ */
 /* -----------Uns Section ----------------- */
 
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 40px 20px;
     background: white;
     border-radius: 20px;
     box-shadow: 0 20px 60px var(--box-shadow);
     margin-top: 20px;
     margin-bottom: 20px;
     position: relative;
     overflow: hidden;
 }
 
 .container::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 6px;
     background: linear-gradient(45deg, var(--color-title), #fc855e, #dfcece, var(--gradient-grey));
     /* background: linear-gradient(45deg, #667eea, #764ba2, #ff6b6b); */
 }
 
 .header {
     text-align: center;
     margin-bottom: 40px;
 }
 
 .header h1 {
     font-size: 3rem;
     /* background: linear-gradient(45deg, #667eea, #764ba2); */
     /* Schriftfarbe gradient */
     /*  -webkit-background-clip: text; */
     /* Schriftfarbe gradient */
     /* -webkit-text-fill-color: transparent; */
     /* Schriftfarbe gradient */
     /*     background-clip: text; */
     /* Schriftfarbe gradient */
     margin-bottom: 10px;
     font-weight: 700;
 }
 
 .tagline {
     /* Text unter Harbour Broker */
     font-size: 1.3rem;
     color: var(--main-text);
     font-weight: 300;
     margin-bottom: 30px;
 }
 
 .hero-text {
     /* text unter Tag-Line */
     font-size: 1.1rem;
     color: var(--main-text);
     max-width: 800px;
     margin: 0 auto 40px;
     text-align: center;
 }
 
 .grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 25px;
     margin: 30px 0;
 }
 
 .card {
     background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
     padding: 25px;
     border-radius: 15px;
     border-left: 4px solid var(--coral-color);
     transition: all 0.3s ease;
     position: relative;
 }
 
 .card:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
     border-left-color: var(--darkgrey-color);
 }
 
 .card h3 {
     color: var(--main-title);
     font-size: 1.3rem;
     margin-bottom: 12px;
     display: flex;
     align-items: center;
 }
 
 .card-icon {
     margin-right: 10px;
     font-size: 1.5rem;
 }
 
 .card p {
     color: var(--main-text);
     font-size: 0.95rem;
 }
 
 .highlight-box {
     /* seit 1982 box */
     background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 83, 0.1));
     border: 1px solid rgba(255, 107, 107, 0.3);
     border-radius: 15px;
     padding: 25px;
     margin: 30px 0;
     text-align: center;
 }
 
 .highlight-box h3 {
     color: var(--coral-color);
     font-size: 1.4rem;
     margin-bottom: 15px;
 }
 
 .values-container {
     /* unsere Werte */
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 20px;
     margin: 30px 0;
 }
 
 .value-item {
     text-align: center;
     flex: 1;
     min-width: 150px;
     max-width: 200px;
 }
 
 .value-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(45deg, --gradient-grey, --coral-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 10px;
     color: white;
     font-size: 1.5rem;
 }
 
 .value-item h4 {
     color: var(--main-title);
     margin-bottom: 8px;
     font-size: 1rem;
 }
 
 .value-item p {
     font-size: 0.9rem;
     color: var(--main-text);
 }
 
 .contact-section {
     /* kontaktiere uns */
     background: linear-gradient(135deg, #fb774b, #3498db);
     color: var(--main-title);
     padding: 30px;
     border-radius: 15px;
     margin-top: 40px;
     text-align: center;
 }
 
 .contact-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 10px;
     margin-top: 25px;
 }
 
 .contact-item {
     background: rgba(255, 255, 255, 0.1);
     padding: 5px;
     border-radius: 10px;
     backdrop-filter: blur(5px);
 }
 
 .contact-item h4 {
     font-size: 0.9rem;
     margin-bottom: 8px;
     color: var(--main-title);
 }
 
 .contact-item p {
     font-size: 0.9rem;
     line-height: 1.4;
     text-align: left;
     padding-left: 15px;
 }
 
 .section-divider {
     height: 2px;
     background: linear-gradient(90deg, transparent, #667eea, transparent);
     margin: 35px 0;
     border-radius: 1px;
 }
 
 .two-column {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
     align-items: start;
 }
 
 @media (max-width: 768px) {
     .container {
         margin: 10px;
         padding: 30px 15px;
     }
     .header h1 {
         font-size: 2.2rem;
     }
     .tagline {
         font-size: 1.1rem;
     }
     .two-column {
         grid-template-columns: 1fr;
         gap: 20px;
     }
     .values-container {
         flex-direction: column;
         align-items: center;
     }
 }
 /* --------------------- ende uns Section -------------------- */
 /* --------------------- Section Hafen ------------------------ */
 
 .main-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 40px 0px;
 }
 
 .page-header {
     text-align: center;
     margin-bottom: 50px;
 }
 
 .page-title {
     font-size: 3rem;
     font-weight: 700;
     /* background: linear-gradient(45deg, #667eea, #764ba2);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text; */
     margin-bottom: 20px;
 }
 
 .page-subtitle {
     font-size: 1.2rem;
     color: var(--main-title);
     max-width: 600px;
     margin: 0 auto;
 }
 
 .search-section {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     margin-bottom: 60px;
 }
 
 .country-filter {
     background: var(--white-color);
     border-radius: 20px;
     padding: 30px;
     box-shadow: 0 10px 30px --box-shadow;
 }
 
 .filter-title {
     font-size: 1.3rem;
     color: var(--main-title);
     margin-bottom: 20px;
     font-weight: 600;
 }
 
 .country-tabs {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-bottom: 25px;
 }
 
 .country-tab {
     padding: 12px 20px;
     background: var(--gradient-grey);
     border: 2px solid transparent;
     border-radius: 25px;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 500;
     font-size: 0.9rem;
 }
 
 .country-tab.active {
     background: linear-gradient(45deg, var(--gradient-grey), var(--coral-color));
     color: var(--main-text);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
 }
 
 .country-tab:hover:not(.active) {
     background: var(--gradient-grey);
     border-color: var(--coral-color);
 }
 
 .regions-container {
     background: var(--gradient-grey);
     border-radius: 15px;
     padding: 25px;
     min-height: 150px;
     border: 2px dashed var(--coral-color);
 }
 
 .region-item {
     display: flex;
     align-items: center;
     padding: 12px;
     margin: 8px 0;
     background: var(--white-color);
     border-radius: 10px;
     cursor: pointer;
     transition: all 0.3s ease;
     border-left: 4px solid transparent;
 }
 
 .region-item:hover {
     border-left-color: var(--coral-color);
     transform: translateX(5px);
     box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
 }
 
 .region-item.selected {
     border-left-color: var(--coral-color);
     background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
     transform: translateX(3px);
 }
 
 .region-icon {
     margin-right: 12px;
     font-size: 1.2rem;
 }
 
 .selection-panel {
     background: var(--white-color);
     border-radius: 20px;
     padding: 30px;
     box-shadow: 0 10px 30px var(--box-shadow);
 }
 
 .selection-step {
     margin-bottom: 30px;
     padding: 20px;
     background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
     border-radius: 15px;
     border-left: 4px solid var(--coral-color);
 }
 
 .step-title {
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--main-title);
     margin-bottom: 8px;
     display: flex;
     align-items: center;
 }
 
 .step-number {
     width: 25px;
     height: 25px;
     background: linear-gradient(45deg, var(--gradient-grey), var(--coral-color));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--main-text);
     font-size: 0.8rem;
     font-weight: 700;
     margin-right: 10px;
 }
 
 .step-description {
     color: var(--main-text);
     font-size: 0.95rem;
 }
 
 .step-note {
     color: var(--main-description);
     font-size: 0.85rem;
     font-style: italic;
     margin-top: 5px;
 }
 
 .cta-section {
     background: linear-gradient(135deg, #ff6b6b, #ff8e53);
     border-radius: 25px;
     padding: 50px;
     text-align: center;
     color: white;
     position: relative;
     overflow: hidden;
 }
 
 .cta-section::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
     animation: rotate 10s linear infinite;
 }
 
 @keyframes rotate {
     0% {
         transform: rotate(0deg);
     }
     100% {
         transform: rotate(360deg);
     }
 }
 
 .cta-content {
     position: relative;
     z-index: 2;
 }
 
 .cta-title {
     font-size: 2rem;
     margin-bottom: 15px;
     font-weight: 600;
 }
 
 .cta-text {
     font-size: 1.1rem;
     margin-bottom: 25px;
     opacity: 0.95;
 }
 
 .cta-button {
     background: rgba(255, 255, 255, 0.2);
     color: var(--main-description);
     padding: 15px 35px;
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     backdrop-filter: blur(10px);
     display: inline-block;
 }
 
 .cta-button:hover {
     background: white;
     color: #ff6b6b;
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
 }
 
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }
 
 .mobile-menu-toggle span {
     width: 25px;
     height: 3px;
     background: #333;
     margin: 3px 0;
     transition: 0.3s;
 }
 
 @media (max-width: 968px) {
     .search-section {
         grid-template-columns: 1fr;
         gap: 30px;
     }
     .nav-menu {
         display: none;
     }
     .mobile-menu-toggle {
         display: flex;
     }
     .page-title {
         font-size: 2.5rem;
     }
     .country-tabs {
         justify-content: center;
     }
     .main-container {
         padding: 30px 15px;
     }
 }
 
 @media (max-width: 480px) {
     .page-title {
         font-size: 2rem;
     }
     .country-tab {
         padding: 10px 15px;
         font-size: 0.85rem;
     }
     .country-filter,
     .selection-panel,
     .cta-section {
         padding: 25px 20px;
     }
 }
 
 .regioCart a {
     font-size: 20px;
     font-weight: 5600;
     color: var(--color-coral);
 }
 
 .regioCart a:hover {
     font-size: 22px;
     font-weight: 600;
     color: var(--color-coral);
     /*  text-shadow: 1px 0 var(--black), -1px 1px 0 var(--black), -1px -1px 0 var(--black), 1px -1px 0 var(--black); */
 }
 
 .active-button {
     width: 35%;
     height: auto;
     font-weight: 700;
     /* text-shadow: 1px 0 var(--black), -1px 1px 0 var(--black), -1px -1px 0 var(--black), 1px -1px 0 var(--black); */
 }
 
 .regioCart .active-button {
     color: var(--coral-color);
     font-size: 22px;
 }
 
 .hafen_container {
     width: 105%;
     margin: 0 auto;
 }
 
 .hafen_tab_trigger ul {
     padding: 0;
     margin: 0;
     list-style: none;
 }
 
 .hafen_tab_trigger ul li {
     display: inline-block;
     margin-right: 2px;
     border-radius: 12px 12px 0 0;
     background-color: var(--coral-color);
     color: var(--main-title);
     padding: 8px 8px;
     cursor: pointer;
     transition: all 0.3s;
     font-weight: 600;
     font-size: 15px;
 }
 
 .hafen_tab_trigger ul li:hover,
 .hafen_tab_trigger ul li.active {
     background-color: var(--gradient-grey);
     border: 1px solid var(--coral-color);
 }
 
 .hafen_tab_content_box {
     display: none;
     font-size: 20px;
     color: var(--main-text);
     background-color: var(--gradient-grey);
     padding: 25px;
     border-radius: 0 12px 12px 12px;
 }
 
 .hafen_tab_content_box:first-child {
     display: block;
 }
 
 #m-v {
     display: none;
     padding: 20px;
     background-color: var(--background-color-lightgrey);
     border: 1px solid var(--lightgrey);
     margin-top: 10px;
 }
 
 #hiddensee {
     display: none;
     padding: 20px;
     background-color: var(--background-color-lightgrey);
     border: 1px solid var(--lightgrey);
     margin-top: 10px;
 }
 
 #ruegen {
     display: none;
     padding: 20px;
     background-color: var(--background-color-lightgrey);
     border: 1px solid var(--lightgrey);
     margin-top: 10px;
 }
 
 .eins,
 .eins1,
 .eins11,
 .eins111,
 .zwei,
 .zwei2,
 .zwei22,
 .zwei222,
 .drei,
 .drei3,
 .drei33,
 .drei333,
 .vier,
 .vier4,
 .vier44,
 .vier444,
 .fuenf,
 .fuenf5,
 .fuenf55,
 .fuenf555,
 .sechs,
 .sechs6,
 .sechs66,
 .sechs666,
 .sieben,
 .acht,
 .acht8,
 .acht88,
 .acht888,
 .neun,
 .zehn,
 .elf,
 .zwolf,
 .dreizehn,
 .vierzehn,
 .fuenfzehn,
 .sechszehn,
 .siebzehn,
 .achtzehn {
     display: none;
     padding: 20px;
     background-color: var(--background-color-lightgrey);
     border: 1px solid var(--lightgrey);
     margin-top: 10px;
     border-radius: 0 15px 15px 15px;
 }
 
 .nordsee {
     position: relative;
     width: 50%;
 }
 /* --------------------- ENDE Section Hafen -------------------- */
 /* --------------------- Section Vermittlung -------------------- */
 
 .main-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 60px 20px;
 }
 
 .page-header {
     text-align: center;
     margin-bottom: 60px;
 }
 
 .page-title {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 20px;
     position: relative;
 }
 
 .page-subtitle {
     font-size: 1.3rem;
     color: var(--main-title);
     max-width: 600px;
     margin: 0 auto;
 }
 
 .content-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: start;
     margin-bottom: 60px;
 }
 
 .services-section {
     background: var(--white-color);
     border-radius: 20px;
     padding: 60px;
     box-shadow: 0 15px 35px var(--box-shadow);
     position: relative;
     overflow: hidden;
 }
 
 .services-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(45deg, var(--gradient-grey), var(--coral-color));
 }
 
 .service-category {
     margin-bottom: 40px;
 }
 
 .service-category:last-child {
     margin-bottom: 0;
 }
 
 .category-title {
     font-size: 1.5rem;
     color: var(--main-title);
     margin-bottom: 20px;
     display: flex;
     align-items: center;
 }
 
 .category-icon {
     width: 40px;
     height: 40px;
     background: linear-gradient(45deg, var(--gradient-grey), var(--coral-color));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 15px;
     color: var(--white-color);
     font-size: 1.2rem;
 }
 
 .service-link {
     display: inline-block;
     background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
     color: var(--coral-color);
     padding: 15px 25px;
     border-radius: 10px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
     border: 2px solid transparent;
     width: 100%;
     text-align: center;
 }
 
 .service-link:hover {
     background: linear-gradient(45deg, var(--gradient-grey), var(--coral-color));
     color: var(--main-description);
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
 }
 
 .image-section {
     position: relative;
 }
 
 .boat-image {
     width: 100%;
     height: 400px;
     object-fit: cover;
     border-radius: 20px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
 }
 
 .boat-image:hover {
     transform: scale(1.02);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
 }
 
 .image-overlay {
     position: absolute;
     bottom: 20px;
     left: 20px;
     right: 20px;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
     backdrop-filter: blur(10px);
     border-radius: 15px;
     padding: 20px;
     border: 1px solid rgba(255, 255, 255, 0.3);
 }
 
 .image-overlay h3 {
     color: var(--main-description);
     font-size: 1.2rem;
     margin-bottom: 10px;
 }
 
 .image-overlay p {
     color: var(--main-description);
     font-size: 0.95rem;
 }
 
 .contact-section {
     background: linear-gradient(135deg, #667eea, #764ba2);
     border-radius: 20px;
     padding: 40px;
     text-align: center;
     color: white;
     position: relative;
     overflow: hidden;
 }
 
 .contact-section::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
     animation: float 8s ease-in-out infinite;
 }
 
 @keyframes float {
     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }
     50% {
         transform: translateY(-10px) rotate(180deg);
     }
 }
 
 .contact-content {
     position: relative;
     z-index: 2;
 }
 
 .contact-title {
     font-size: 2rem;
     margin-bottom: 30px;
     font-weight: 600;
 }
 
 .contact-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 25px;
     margin-bottom: 30px;
 }
 
 .contact-item {
     background: rgba(255, 255, 255, 0.15);
     padding: 10px;
     border-radius: 15px;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
 }
 
 .contact-item:hover {
     background: rgba(255, 255, 255, 0.2);
     transform: translateY(-3px);
 }
 
 .contact-item h4 {
     font-size: 1.1rem;
     margin-bottom: 10px;
     color: #ecf0f1;
 }
 
 .contact-item p {
     font-size: 0.95rem;
     line-height: 1.4;
 }
 
 .cta-text {
     font-size: 1.3rem;
     margin-top: 20px;
     font-weight: 500;
     opacity: 0.95;
 }
 
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }
 
 .mobile-menu-toggle span {
     width: 25px;
     height: 3px;
     background: #333;
     margin: 3px 0;
     transition: 0.3s;
 }
 
 @media (max-width: 968px) {
     .content-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }
     .nav-menu {
         display: none;
     }
     .mobile-menu-toggle {
         display: flex;
     }
     .page-title {
         font-size: 2.5rem;
     }
     .main-container {
         padding: 40px 20px;
     }
     .services-section,
     .contact-section {
         padding: 30px 20px;
     }
 }
 
 @media (max-width: 480px) {
     .page-title {
         font-size: 2rem;
     }
     .contact-grid {
         grid-template-columns: 1fr;
     }
 }
 /* --------------------- ENDE Section Vermittlung -------------------- */
 /* --------------------- Session Contact ----------------------------- */
 
 .main-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 60px 20px;
 }
 
 .page-header {
     text-align: center;
     margin-bottom: 60px;
 }
 
 .page-title {
     font-size: 3.5rem;
     font-weight: 700;
     background: linear-gradient(45deg, var(--gradient-grey), var(--color-title));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 20px;
 }
 
 .page-subtitle {
     font-size: 1.3rem;
     color: var(--main-description);
     max-width: 600px;
     margin: 0 auto;
 }
 
 .contact-hero {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     margin-bottom: 80px;
 }
 
 .contact-info-section {
     background: var(--white-color);
     border-radius: 25px;
     padding: 50px 40px;
     box-shadow: 0 20px 60px var(--box-shadow);
     position: relative;
     overflow: hidden;
 }
 
 .contact-info-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 6px;
     background: linear-gradient(45deg, var(--gradient-grey), var(--coral-color), #ff6b6b);
 }
 
 .contact-item {
     display: flex;
     align-items: center;
     margin-bottom: 30px;
     padding: 20px;
     background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
     border-radius: 15px;
     border-left: 4px solid var(--color-title);
     transition: all 0.3s ease;
 }
 
 .contact-item:hover {
     transform: translateX(5px);
     box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
 }
 
 .contact-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(45deg, var(--gradient-grey), var(--coral-color));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 20px;
     color: var(--white-color);
     font-size: 2.5rem;
     flex-shrink: 0;
 }
 
 .icon {
     width: 35px;
 }
 
 .contact-details h3 {
     color: var(--main-description);
     font-size: 1.2rem;
     margin-bottom: 5px;
     font-weight: 600;
 }
 
 .contact-details p {
     color: var(--main-description);
     font-size: 1rem;
     line-height: 1.4;
 }
 
 .visual-section {
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
 }
 
 .contact-illustration {
     width: 100%;
     max-width: 400px;
     height: 400px;
     background: linear-gradient(135deg, var(--gradient-grey), var(--coral-color));
     border-radius: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
     box-shadow: 0 25px 60px rgba(102, 126, 234, 0.3);
 }
 
 .contact-illustration::before {
     content: '';
     position: absolute;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
     animation: float 8s ease-in-out infinite;
 }
 
 @keyframes float {
     0%,
     100% {
         transform: rotate(0deg) translateY(0px);
     }
     50% {
         transform: rotate(180deg) translateY(-20px);
     }
 }
 
 .illustration-content {
     position: relative;
     z-index: 2;
     text-align: center;
     color: var(--main-description);
 }
 
 .illustration-icon {
     font-size: 4rem;
     margin-bottom: 20px;
     animation: pulse 2s ease-in-out infinite;
 }
 
 @keyframes pulse {
     0%,
     100% {
         transform: scale(1);
     }
     50% {
         transform: scale(1.1);
     }
 }
 
 .illustration-text {
     font-size: 1.2rem;
     font-weight: 500;
     opacity: 0.9;
 }
 
 .cta-section {
     background: linear-gradient(135deg, #ff6b6b, #ff8e53);
     border-radius: 25px;
     padding: 50px;
     text-align: center;
     color: var(--white-color);
     position: relative;
     overflow: hidden;
     margin-bottom: 60px;
 }
 
 .cta-section::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
     animation: rotate 10s linear infinite;
 }
 
 @keyframes rotate {
     0% {
         transform: rotate(0deg);
     }
     100% {
         transform: rotate(360deg);
     }
 }
 
 .cta-content {
     position: relative;
     z-index: 2;
 }
 
 .cta-title {
     font-size: 2.5rem;
     margin-bottom: 20px;
     font-weight: 700;
 }
 
 .cta-text {
     font-size: 1.3rem;
     margin-bottom: 30px;
     opacity: 0.95;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }
 
 .cta-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
 }
 
 .cta-button {
     background: rgba(255, 255, 255, 0.2);
     color: var(--white-color);
     padding: 15px 30px;
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     backdrop-filter: blur(10px);
 }
 
 .cta-button:hover {
     background: var(--white-color);
     color: var(--coral-color);
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
 }
 
 .services-preview {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }
 
 .service-card {
     background: var(--white-color);
     border-radius: 20px;
     padding: 40px 30px;
     text-align: center;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     border-top: 4px solid transparent;
 }
 
 .service-card:nth-child(1) {
     border-top-color: #667eea;
 }
 
 .service-card:nth-child(2) {
     border-top-color: #764ba2;
 }
 
 .service-card:nth-child(3) {
     border-top-color: var(--coral-color);
 }
 
 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
 }
 
 .service-icon {
     font-size: 3rem;
     margin-bottom: 20px;
 }
 
 .service-card h3 {
     color: var(--main-text);
     font-size: 1.4rem;
     margin-bottom: 15px;
 }
 
 .service-card p {
     color: var(--main-description);
     line-height: 1.6;
 }
 
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }
 
 .mobile-menu-toggle span {
     width: 25px;
     height: 3px;
     background: var(--main-title);
     margin: 3px 0;
     transition: 0.3s;
 }
 
 @media (max-width: 968px) {
     .contact-hero {
         grid-template-columns: 1fr;
         gap: 40px;
     }
     .nav-menu {
         display: none;
     }
     .mobile-menu-toggle {
         display: flex;
     }
     .page-title {
         font-size: 2.5rem;
     }
     .main-container {
         padding: 40px 20px;
     }
     .contact-info-section,
     .cta-section {
         padding: 40px 30px;
     }
     .cta-buttons {
         flex-direction: column;
         align-items: center;
     }
 }
 
 @media (max-width: 480px) {
     .page-title {
         font-size: 2rem;
     }
     .contact-item {
         flex-direction: column;
         text-align: center;
     }
     .contact-icon {
         margin-right: 0;
         margin-bottom: 15px;
     }
     .cta-title {
         font-size: 2rem;
     }
 }
 /* --------------------- Session Contact ----------------------------- */
 /* =============== ENDE SECTIONS_HB ====================== */
 /* ================== SECTION LIEGEPLATZVERMITTLUNG ========== */
 
 .form-container {
     max-width: 800px;
     margin: 0 auto;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     border-radius: 24px;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
     overflow: hidden;
 }
 
 .form-header {
     background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
     color: white;
     padding: 40px;
     text-align: center;
     position: relative;
 }
 
 .form-header::before {
     content: '☀️';
     font-size: 3rem;
     opacity: 0.3;
     position: absolute;
     top: 20px;
     right: 40px;
 }
 
 .form-header h1 {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 10px;
 }
 
 .form-header p {
     opacity: 0.9;
     font-size: 1.1rem;
 }
 
 .form-content {
     padding: 40px;
 }
 
 .form-grid {
     display: grid;
     gap: 30px;
 }
 
 .form-section {
     background: #fff8f0;
     border-radius: 16px;
     padding: 30px;
     border-left: 4px solid #ff8e53;
 }
 
 .section-title {
     font-size: 1.3rem;
     font-weight: 600;
     color: #1f2937;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }
 
 .section-title::before {
     content: '';
     width: 8px;
     height: 8px;
     background: #ff8e53;
     border-radius: 50%;
 }
 
 .form-row {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-bottom: 20px;
 }
 
 .form-group {
     position: relative;
 }
 
 .form-label {
     display: block;
     font-weight: 500;
     color: #374151;
     margin-bottom: 8px;
     font-size: 0.95rem;
 }
 
 .form-input {
     width: 100%;
     padding: 14px 16px;
     border: 2px solid #e5e7eb;
     border-radius: 12px;
     font-size: 1rem;
     transition: all 0.3s ease;
     background: white;
 }
 
 .form-input:focus {
     outline: none;
     border-color: #ff8e53;
     box-shadow: 0 0 0 3px rgba(255, 142, 83, 0.1);
     transform: translateY(-1px);
 }
 
 .form-textarea {
     min-height: 120px;
     resize: vertical;
 }
 
 .radio-group {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
 }
 
 .radio-option {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 12px 16px;
     background: white;
     border: 2px solid #e5e7eb;
     border-radius: 12px;
     cursor: pointer;
     transition: all 0.3s ease;
     min-width: 120px;
 }
 
 .radio-option:hover {
     border-color: #ff8e53;
     background: #fff8f0;
 }
 
 .radio-option input[type="radio"] {
     accent-color: #ff8e53;
 }
 
 .radio-option.selected {
     border-color: #ff8e53;
     background: #fff8f0;
     box-shadow: 0 0 0 3px rgba(255, 142, 83, 0.1);
 }
 
 .submit-section {
     background: linear-gradient(135deg, #10b981 0%, #059669 100%);
     color: white;
     margin: 40px -40px -40px -40px;
     padding: 40px;
     text-align: center;
 }
 
 .submit-button {
     background: white;
     color: #059669;
     border: none;
     padding: 16px 40px;
     border-radius: 12px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }
 
 .submit-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }
 
 .privacy-notice {
     background: #fef3c7;
     border: 1px solid #f59e0b;
     border-radius: 12px;
     padding: 20px;
     margin-top: 30px;
     font-size: 0.9rem;
     color: #92400e;
 }
 
 .summer-icon {
     font-size: 1.5rem;
     margin-right: 10px;
 }
 
 @media (max-width: 768px) {
     .form-content {
         padding: 20px;
     }
     .form-section {
         padding: 20px;
     }
     .form-row {
         grid-template-columns: 1fr;
     }
     .radio-group {
         flex-direction: column;
     }
     .radio-option {
         min-width: auto;
     }
 }
 /* Summer theme animations */
 
 @keyframes float {
     0% {
         transform: translateY(0px);
     }
     50% {
         transform: translateY(-10px);
     }
     100% {
         transform: translateY(0px);
     }
 }
 
 .form-header::after {
     content: '🌊';
     position: absolute;
     top: 50px;
     left: 40px;
     font-size: 2rem;
     opacity: 0.3;
     animation: float 3s ease-in-out infinite;
 }
 /* ---------------- Winter ----------------------- */
 
 .winter_form-container {
     max-width: 800px;
     margin: 0 auto;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     border-radius: 24px;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
     overflow: hidden;
 }
 
 .winter_form-header {
     background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
     color: white;
     padding: 40px;
     text-align: center;
     position: relative;
 }
 
 .winter_form-header::before {
     content: '⚓';
     font-size: 3rem;
     opacity: 0.2;
     position: absolute;
     top: 20px;
     right: 40px;
 }
 
 .winter_form-header h1 {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 10px;
 }
 
 .winter_form-header p {
     opacity: 0.9;
     font-size: 1.1rem;
 }
 
 .winter_form-content {
     padding: 40px;
 }
 
 .winter_form-grid {
     display: grid;
     gap: 30px;
 }
 
 .winter_form-section {
     background: #f8fafc;
     border-radius: 16px;
     padding: 30px;
     border-left: 4px solid #3b82f6;
 }
 
 .section-title {
     font-size: 1.3rem;
     font-weight: 600;
     color: #1f2937;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }
 
 .section-title::before {
     content: '';
     width: 8px;
     height: 8px;
     background: #3b82f6;
     border-radius: 50%;
 }
 
 .winter_form-row {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-bottom: 20px;
 }
 
 .winter_form-group {
     position: relative;
 }
 
 .winter_form-label {
     display: block;
     font-weight: 500;
     color: #374151;
     margin-bottom: 8px;
     font-size: 0.95rem;
 }
 
 .winter_form-input {
     width: 100%;
     padding: 14px 16px;
     border: 2px solid #e5e7eb;
     border-radius: 12px;
     font-size: 1rem;
     transition: all 0.3s ease;
     background: white;
 }
 
 .winter_form-input:focus {
     outline: none;
     border-color: #3b82f6;
     box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
     transform: translateY(-1px);
 }
 
 .winter_form-textarea {
     min-height: 120px;
     resize: vertical;
 }
 
 .checkbox-group {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 16px;
     background: white;
     border-radius: 12px;
     border: 2px solid #e5e7eb;
     transition: all 0.3s ease;
 }
 
 .checkbox-group:hover {
     border-color: #3b82f6;
 }
 
 .checkbox-group input[type="checkbox"] {
     width: 20px;
     height: 20px;
     accent-color: #3b82f6;
 }
 
 .radio-group {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }
 
 .radio-option {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 12px 16px;
     background: white;
     border: 2px solid #e5e7eb;
     border-radius: 12px;
     cursor: pointer;
     transition: all 0.3s ease;
 }
 
 .radio-option:hover {
     border-color: #3b82f6;
     background: #f0f9ff;
 }
 
 .radio-option input[type="radio"] {
     accent-color: #3b82f6;
 }
 
 .submit-section {
     background: linear-gradient(135deg, #10b981 0%, #059669 100%);
     color: white;
     margin: 40px -40px -40px -40px;
     padding: 40px;
     text-align: center;
 }
 
 .submit-button {
     background: white;
     color: #059669;
     border: none;
     padding: 16px 40px;
     border-radius: 12px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }
 
 .submit-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }
 
 .privacy-notice {
     background: #fef3c7;
     border: 1px solid #f59e0b;
     border-radius: 12px;
     padding: 20px;
     margin-top: 30px;
     font-size: 0.9rem;
     color: #92400e;
 }
 
 .boat-icon {
     font-size: 1.5rem;
     margin-right: 10px;
 }
 
 @media (max-width: 768px) {
     .winter_form-content {
         padding: 20px;
     }
     .winter_form-section {
         padding: 20px;
     }
     .winter_form-row {
         grid-template-columns: 1fr;
     }
     .radio-group {
         flex-direction: column;
     }
 }
 /* ================== ENDE SECTION LIEGEPLATZVERMITTLUNG ========== */
 /* ================== SECTION DATENSCHUTZ ========== */
 
 .data_container {
     max-width: 900px;
     margin: 0 auto;
     padding: 150px 20px 20px 20px;
 }
 
 .data_privacy-card {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     border-radius: 24px;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
     overflow: hidden;
     margin-bottom: 20px;
 }
 
 .data_header {
     background: linear-gradient(135deg, #3c7ad1 0%, #2d3748 100%);
     color: white;
     padding: 50px 40px;
     text-align: center;
     position: relative;
 }
 
 .data_header::before {
     content: '🔒';
     font-size: 4rem;
     opacity: 0.2;
     position: absolute;
     top: 20px;
     right: 40px;
 }
 
 .data_header h1 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 15px;
 }
 
 .data_header p {
     font-size: 1.2rem;
     opacity: 0.9;
     max-width: 600px;
     margin: 0 auto;
 }
 
 .data_content {
     padding: 50px 40px;
 }
 
 .data_section {
     margin-bottom: 40px;
     padding: 30px;
     background: #f8fafc;
     border-radius: 16px;
     border-left: 4px solid #4299e1;
     transition: all 0.3s ease;
 }
 
 .data_section:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }
 
 .data_section-title {
     font-size: 1.5rem;
     font-weight: 600;
     color: #1a202c;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 12px;
     cursor: pointer;
 }
 
 .data_section-title::before {
     content: '';
     width: 10px;
     height: 10px;
     background: #4299e1;
     border-radius: 50%;
     flex-shrink: 0;
 }
 
 .data_section-content {
     color: #4a5568;
     font-size: 1rem;
     max-height: none;
     overflow: hidden;
     transition: all 0.3s ease;
 }
 
 .data_section-content p {
     margin-bottom: 16px;
 }
 
 .data_section-content p:last-child {
     margin-bottom: 0;
 }
 
 .data_highlight-box {
     background: linear-gradient(135deg, #bee3f8 0%, #90cdf4 100%);
     border: 1px solid #4299e1;
     border-radius: 12px;
     padding: 20px;
     margin: 20px 0;
 }
 
 .data_contact-info {
     background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
     color: white;
     padding: 40px;
     border-radius: 16px;
     margin-top: 30px;
 }
 
 .data_contact-info h3 {
     font-size: 1.4rem;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }
 
 .data_contact-info h3::before {
     content: '📧';
     font-size: 1.5rem;
 }
 
 .data_contact-details {
     display: grid;
     gap: 12px;
     font-size: 1rem;
 }
 
 .data_contact-details div {
     display: flex;
     align-items: center;
     gap: 12px;
 }
 
 .data_contact-details div::before {
     content: '';
     width: 6px;
     height: 6px;
     background: #4299e1;
     border-radius: 50%;
     flex-shrink: 0;
 }
 
 .data_collapsible {
     cursor: pointer;
 }
 
 .data_collapsible .section-title::after {
     content: '▼';
     margin-left: auto;
     font-size: 0.8rem;
     transition: transform 0.3s ease;
 }
 
 .data_collapsible.collapsed .section-title::after {
     transform: rotate(-90deg);
 }
 
 .data_collapsible.collapsed .section-content {
     max-height: 0;
     padding-top: 0;
     margin-top: 0;
 }
 
 .data_back-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
     color: white;
     border: none;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     cursor: pointer;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
     opacity: 0;
     visibility: hidden;
 }
 
 .data_back-to-top.visible {
     opacity: 1;
     visibility: visible;
 }
 
 .data_back-to-top:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
 }
 
 .data_toc {
     background: #edf2f7;
     border-radius: 12px;
     padding: 25px;
     margin-bottom: 30px;
 }
 
 .data_toc h3 {
     font-size: 1.2rem;
     margin-bottom: 15px;
     color: #2d3748;
 }
 
 .data_toc ul {
     list-style: none;
     display: grid;
     gap: 8px;
 }
 
 .data_toc li {
     display: flex;
     align-items: center;
     gap: 8px;
 }
 
 .data_toc li::before {
     content: '📄';
     font-size: 0.9rem;
 }
 
 .data_toc a {
     color: #4299e1;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
 }
 
 .data_toc a:hover {
     color: #2b6cb0;
 }
 
 @media (max-width: 768px) {
     .data_container {
         padding: 10px;
     }
     .data_header {
         padding: 30px 20px;
     }
     .data_header h1 {
         font-size: 2rem;
     }
     .data_content {
         padding: 30px 20px;
     }
     .data_section {
         padding: 20px;
     }
     .data_contact-info {
         padding: 25px;
     }
 }
 /* Animation for page load */
 
 .fade-in {
     animation: fadeIn 0.6s ease-out;
 }
 
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(30px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }
 /* ================== ENDE SECTION DATENSCHUTZ ========== */
 /* ================== SECTION IMPRESSUM ========== */
 
 .imp_container {
     max-width: 1000px;
     margin: 0 auto;
     padding: 150px 20px 20px 20px;
 }
 
 .imp_impressum-card {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     border-radius: 24px;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
     overflow: hidden;
 }
 
 .imp_header {
     background: linear-gradient(135deg, #3c7ad1 0%, #2c5282 100%);
     color: white;
     padding: 50px 40px;
     text-align: center;
     position: relative;
 }
 
 .imp_header::before {
     content: '⚖️';
     font-size: 4rem;
     opacity: 0.2;
     position: absolute;
     top: 20px;
     right: 40px;
 }
 
 .imp_header h1 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 15px;
 }
 
 .imp_header p {
     font-size: 1.1rem;
     opacity: 0.9;
 }
 
 .imp_content {
     padding: 50px 40px;
 }
 
 .imp_info-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 40px;
 }
 
 .imp_info-card {
     background: #f7fafc;
     border-radius: 16px;
     padding: 30px;
     border-left: 4px solid #3182ce;
     transition: all 0.3s ease;
 }
 
 .imp_info-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
 }
 
 .imp_info-card h3 {
     font-size: 1.3rem;
     font-weight: 600;
     color: #2d3748;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }
 
 .imp_info-card h3::before {
     content: '';
     width: 10px;
     height: 10px;
     background: #3182ce;
     border-radius: 50%;
     flex-shrink: 0;
 }
 
 .imp_info-item {
     margin-bottom: 12px;
     display: flex;
     align-items: flex-start;
     gap: 12px;
 }
 
 .imp_info-item::before {
     content: '';
     width: 6px;
     height: 6px;
     background: #3182ce;
     border-radius: 50%;
     margin-top: 8px;
     flex-shrink: 0;
 }
 
 .imp_info-item strong {
     color: #2d3748;
     font-weight: 600;
 }
 
 .imp_section {
     background: #f8fafc;
     border-radius: 16px;
     padding: 30px;
     margin-bottom: 30px;
     border-left: 4px solid #e53e3e;
 }
 
 .imp_section h2 {
     font-size: 1.4rem;
     font-weight: 600;
     color: #2d3748;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 12px;
 }
 
 .imp_section h2::before {
     content: '';
     width: 10px;
     height: 10px;
     background: #e53e3e;
     border-radius: 50%;
     flex-shrink: 0;
 }
 
 .imp_section p {
     margin-bottom: 15px;
     color: #4a5568;
     text-align: justify;
 }
 
 .imp_section p:last-child {
     margin-bottom: 0;
 }
 
 .imp_highlight-box {
     background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
     border: 1px solid #e53e3e;
     border-radius: 12px;
     padding: 20px;
     margin: 20px 0;
 }
 
 .imp_highlight-box strong {
     color: #c53030;
 }
 
 .google-section {
     background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
     border-left-color: #38b2ac;
 }
 
 .google-section h2::before {
     background: #38b2ac;
 }
 
 .imp_contact-footer {
     background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
     color: white;
     padding: 40px;
     text-align: center;
     margin-top: 40px;
     border-radius: 16px;
 }
 
 .imp_contact-footer h3 {
     font-size: 1.5rem;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
 }
 
 .imp_contact-footer h3::before {
     content: '📞';
     font-size: 1.5rem;
 }
 
 .imp_contact-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 20px;
 }
 
 .imp_contact-item {
     background: rgba(255, 255, 255, 0.1);
     padding: 20px;
     border-radius: 12px;
     backdrop-filter: blur(10px);
 }
 
 .imp_contact-item strong {
     display: block;
     margin-bottom: 8px;
     color: #90cdf4;
 }
 
 .imp_toc {
     background: #edf2f7;
     border-radius: 12px;
     padding: 25px;
     margin-bottom: 30px;
 }
 
 .imp_toc h3 {
     font-size: 1.2rem;
     margin-bottom: 15px;
     color: #2d3748;
     display: flex;
     align-items: center;
     gap: 10px;
 }
 
 .imp_toc h3::before {
     content: '📋';
     font-size: 1.2rem;
 }
 
 .imp_toc ul {
     list-style: none;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 8px;
 }
 
 .imp_toc li {
     display: flex;
     align-items: center;
     gap: 8px;
 }
 
 .imp_toc li::before {
     content: '📄';
     font-size: 0.9rem;
 }
 
 .imp_toc a {
     color: #3182ce;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
 }
 
 .imp_toc a:hover {
     color: #2c5282;
 }
 
 @media (max-width: 768px) {
     .imp_container {
         padding: 10px;
     }
     .imp_header {
         padding: 30px 20px;
     }
     .imp_header h1 {
         font-size: 2rem;
     }
     .imp_content {
         padding: 30px 20px;
     }
     .imp_info-grid {
         grid-template-columns: 1fr;
     }
     .imp_section {
         padding: 20px;
     }
     .imp_contact-footer {
         padding: 25px;
     }
     .imp_toc ul {
         grid-template-columns: 1fr;
     }
 }
 /* Animations */
 
 .fade-in {
     animation: fadeIn 0.6s ease-out;
 }
 
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(30px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }
 
 .scroll-animation {
     opacity: 0;
     transform: translateY(50px);
     transition: all 0.6s ease-out;
 }
 
 .scroll-animation.visible {
     opacity: 1;
     transform: translateY(0);
 }
 /* ================== ENDE SECTION IMPRESSUM ========== */
 /* ================== ENDE HB ========== */
 /* =============== ENDE SECTIONS_Hafen ====================== */
 
 .section_hafen {
     display: flex;
     margin: 0;
     padding: 120px;
     top: 0;
     left: 0;
     min-height: 100vh;
     background-color: #fff;
     color: black;
 }
 
 .section_hafen p {
     display: block;
     padding-top: 80px;
     text-align: start;
 }
 
 .section_hafen p a {
     color: #fff;
     display: inline-flex;
     padding-top: 40px;
 }
 
 #section_liegeplatz {
     background-color: coral;
     color: #fff;
 }
 
 #section_service {
     background-color: aquamarine;
     color: #333;
 }
 
 #section_service p {
     color: #333;
 }
 
 #section_service_zubehoer {
     background-color: darkkhaki;
     color: #333;
 }
 
 #section_service_zubehoer p {
     color: #333;
 }
 
 #section_service_tankstelle {
     background-color: firebrick;
 }
 
 #section_service_tankstelle p {
     color: #fff;
 }
 
 #section_service_backerei {
     background-color: lightgreen;
 }
 
 #section_service_backerei p {
     color: #333;
 }
 
 #section_service_restaurant {
     background-color: lightsteelblue
 }
 
 #section_service_restaurant p {
     color: #333;
 }
 
 #section_kontakt {
     background-color: blue;
     color: yellow;
 }
 
 #section_kontakt p {
     color: yellow;
 }
 
 #section_polizei {
     background-color: red;
     display: flex;
     flex-wrap: wrap;
 }
 
 #section_polizei p {
     color: #fff;
     display: flex;
     flex-wrap: wrap;
 }
 
 #section_feuerwehr {
     background-color: green;
     color: purple;
 }
 
 #section_feuerwehr p {
     color: purple;
 }
 
 #section_arzt {
     background-color: yellow;
     color: #000;
 }
 
 #section_arzt p {
     color: #000;
 }
 
 #section_login {
     background-color: crimson;
 }
 
 #section_login p {
     color: #fff;
 }
 
 #section_login_kunde {
     background-color: darkorange;
 }
 
 #section_login_kunde p {
     color: #333;
 }
 
 #section_login_admin {
     background-color: gold;
 }
 
 #section_login_admin p {
     color: #333;
 }
 
 #home_hafen {
     color: #000;
 }
 /* ----------------- Dienstleistungen Hafen----------------- */
 
 .haefen_container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 20px;
 }
 
 .haefen_main-card {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     border-radius: 24px;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
     overflow: hidden;
 }
 
 .haefen_header {
     background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
     color: white;
     padding: 40px;
     text-align: center;
     position: relative;
 }
 
 .haefen_header::before {
     content: '⚓';
     font-size: 4rem;
     opacity: 0.2;
     position: absolute;
     top: 20px;
     right: 40px;
 }
 
 .haefen_header h1 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 15px;
 }
 
 .haefen_header p {
     font-size: 1.2rem;
     opacity: 0.9;
     color: #fff;
     text-align: center;
     padding-top: 20px;
 }
 
 .haefen_content-wrapper {
     display: grid;
     grid-template-columns: 450px 1fr;
     gap: 0;
     align-items: start;
 }
 
 .haefen_services-sidebar {
     background: #f8fafc;
     padding: 30px 25px;
     border-right: 3px solid #e2e8f0;
     height: auto;
     overflow: visible;
 }
 
 .haefen_services-title {
     font-size: 1.3rem;
     font-weight: 700;
     color: #1a202c;
     margin-bottom: 25px;
     display: flex;
     align-items: center;
     gap: 12px;
 }
 
 .haefen_services-title::before {
     content: '🛠️';
     font-size: 1.5rem;
 }
 
 .haefen_services-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 12px;
     width: 100%;
 }
 
 .haefen_service-item {
     background: white;
     border-radius: 10px;
     padding: 12px 8px;
     text-align: center;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     cursor: pointer;
     border: 2px solid transparent;
     min-height: 70px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }
 
 .haefen_service-item:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
     border-color: #3182ce;
 }
 
 .haefen_service-icon {
     font-size: 1.5rem;
     margin-bottom: 6px;
     display: block;
 }
 
 .haefen_service-text {
     font-size: 0.7rem;
     color: #4a5568;
     font-weight: 500;
     line-height: 1.2;
     text-align: center;
 }
 
 .haefen_map-container {
     position: relative;
     background: linear-gradient(45deg, #e6fffa 0%, #b2f5ea 100%);
     padding: 40px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }
 
 .haefen_map-frame {
     background: white;
     border-radius: 16px;
     padding: 20px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     max-width: 100%;
     position: relative;
 }
 
 .haefen_map-image {
     width: 100%;
     height: auto;
     border-radius: 12px;
     display: block;
 }
 
 .haefen_info-section {
     background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
     color: white;
     padding: 40px;
     margin: 0;
 }
 
 .haefen_info-title {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 20px;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
 }
 
 .haefen_info-title::before {
     content: '🗺️';
     font-size: 2rem;
 }
 
 .haefen_info-content {
     max-width: 800px;
     margin: 0 auto;
 }
 
 .haefen_info-highlight {
     background: rgba(59, 130, 246, 0.2);
     border-left: 4px solid #3b82f6;
     padding: 20px;
     margin: 20px 0;
     border-radius: 8px;
     font-size: 1.1rem;
     font-weight: 500;
 }
 
 .haefen_info-text {
     font-size: 1rem;
     margin-bottom: 15px;
     text-align: center;
     opacity: 0.9;
 }
 
 .haefen_features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 20px;
     margin-top: 30px;
 }
 
 .haefen_feature-card {
     background: rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     padding: 10px;
     text-align: center;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }
 
 .haefen_feature-card h4 {
     font-size: 1.1rem;
     margin-bottom: 10px;
     color: #90cdf4;
 }
 
 .haefen_feature-card p {
     font-size: 0.9rem;
     opacity: 0.8;
     padding-top: 10px;
     text-align: center;
 }
 /* Service Icons Mapping */
 
 .haefen_service-item:nth-child(1) .haefen_service-icon::before {
     content: '⛽';
 }
 
 .haefen_haefen_service-item:nth-child(2) .haefen_service-icon::before {
     content: '⛽';
 }
 
 .haefen_service-item:nth-child(3) .haefen_service-icon::before {
     content: '🏗️';
 }
 
 .haefen_service-item:nth-child(4) .haefen_service-icon::before {
     content: '🛠️';
 }
 
 .haefen_service-item:nth-child(5) .haefen_service-icon::before {
     content: '🏥';
 }
 
 .haefen_service-item:nth-child(6) .haefen_service-icon::before {
     content: '🚿';
 }
 
 .haefen_service-item:nth-child(7) .haefen_service-icon::before {
     content: '🚻';
 }
 
 .haefen_service-item:nth-child(8) .haefen_service-icon::before {
     content: '👪';
 }
 
 .haefen_service-item:nth-child(9) .haefen_service-icon::before {
     content: '🔌';
 }
 
 .haefen_service-item:nth-child(10) .haefen_service-icon::before {
     content: '📷';
 }
 
 .haefen_service-item:nth-child(11) .haefen_service-icon::before {
     content: '🧭';
 }
 
 .haefen_service-item:nth-child(12) .haefen_service-icon::before {
     content: '🧖';
 }
 
 .haefen_service-item:nth-child(13) .haefen_service-icon::before {
     content: '🛝';
 }
 
 .haefen_service-item:nth-child(14) .haefen_service-icon::before {
     content: '🏊';
 }
 
 .haefen_service-item:nth-child(15) .haefen_service-icon::before {
     content: '🏖️';
 }
 
 .haefen_service-item:nth-child(16) .haefen_service-icon::before {
     content: '🎱';
 }
 
 .haefen_service-item:nth-child(17) .haefen_service-icon::before {
     content: '🍞';
 }
 
 .haefen_service-item:nth-child(18) .haefen_service-icon::before {
     content: '🍽️';
 }
 
 .haefen_service-item:nth-child(19) .haefen_service-icon::before {
     content: '☕';
 }
 
 .haefen_service-item:nth-child(20) .haefen_service-icon::before {
     content: '🔥';
 }
 
 .haefen_service-item:nth-child(21) .haefen_service-icon::before {
     content: '🚐';
 }
 
 .haefen_service-item:nth-child(22) .haefen_service-icon::before {
     content: '🚌';
 }
 
 .haefen_service-item:nth-child(23) .haefen_service-icon::before {
     content: '🛜';
 }
 
 @media (max-width: 1200px) {
     .haefen_content-wrapper {
         grid-template-columns: 1fr;
     }
     .haefen_services-sidebar {
         border-right: none;
         border-bottom: 3px solid #e2e8f0;
     }
     .haefen_services-grid {
         grid-template-columns: repeat(6, 1fr);
     }
 }
 
 @media (max-width: 768px) {
     .haefen_container {
         padding: 10px;
     }
     .haefen_header {
         padding: 30px 20px;
     }
     .haefen_header h1 {
         font-size: 2rem;
     }
     .haefen_services-sidebar {
         padding: 30px 20px;
     }
     .haefen_services-grid {
         grid-template-columns: repeat(4, 1fr);
         gap: 10px;
     }
     .haefen_map-container {
         padding: 20px;
     }
     .haefen_info-section {
         padding: 30px 20px;
     }
     .haefen_info-title {
         font-size: 1.5rem;
     }
 }
 /* Animations */
 
 .fade-in {
     animation: fadeIn 0.8s ease-out;
 }
 
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(30px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }
 
 .haefen_service-item {
     animation: slideInUp 0.6s ease-out forwards;
     opacity: 0;
 }
 
 .haefen_service-item:nth-child(odd) {
     animation-delay: 0.1s;
 }
 
 .haefen_service-item:nth-child(even) {
     animation-delay: 0.2s;
 }
 
 @keyframes slideInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }
 /* ----------------- Ende Dienstleistungen Hafen----------------- */
 /* ---------------- bootservice ---------------------------- */
 /* ---------------- Ende Bootservice ----------------- */
 /* ---------------- Segelservice ---------------------------- */
 /* ---------------- Ende Segelservice ---------------------------- */
 /* ---------------- Bootzubehor ---------------------------- */
 /* ---------------- Ende Bootzubehor ---------------------------- */
 /* ---------------- Tankstelle ---------------------------- */
 /* ---------------- Ende Tankstelle ---------------------------- */
 /* ---------------- backerei ---------------------------- */
 /* ---------------- Ende backerei ---------------------------- */
 /* ---------------- Restaurant ---------------------------- */
 /* ---------------- Ende Restaurant ---------------------------- */
 /* =============== ENDE SECTIONS_Hafen ====================== */