 :root {
      --primary: #2A4365;
      --accent: #F6AD55;
      --bg: #F7FAFC;
      --text: #000000;
      --card-bg: #FFFFFF;
      --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
      --nav-bg: #233b54;
      --slider-btn-bg: #2A4365;
      --slider-btn-color: #fff;
      --yellow: #ffb800;
      --border: #F6AD55;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html,
    body {
      font-family: 'Montserrat', Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100%;
      width: 100vw;
      overflow-x: hidden;
    }
    body {
      min-height: 100vh;
      width: 100vw;
      overflow-x: hidden;
    }

    /* Navigation */
    .nav {
      background: var(--nav-bg);
      padding: 1rem 2rem;
      position: fixed;
      width: 100vw;
      top: 0;
      z-index: 1000;
      left: 0;
    }
    .nav-content {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .logo img {
      width: 150px;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
    }
    .nav-link {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 1.1rem;
      transition: color 0.3s;
      padding: 0.5rem 0;
    }
    .nav-link:hover {
      color: var(--accent);
    }
    .hamburger {
      display: none;
      cursor: pointer;
      color: white;
      font-size: 32px;
      background: none;
      border: none;
      z-index: 1200;
    }

    /* Hamburger Menü - Mobil */
    @media (max-width: 900px) {
      .nav-content {
        max-width: 98vw;
        padding: 0 1vw;
      }
      .hamburger {
        display: block;
      }
      .nav-links {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 0;
        opacity: 0;
        background: var(--nav-bg);
        z-index: 1100;
        pointer-events: none;
        transition: opacity 0.3s, height 0.3s;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      }
      .nav-links.active {
        opacity: 1;
        height: 100vh;
        pointer-events: all;
        padding-top: 50px;
        text-align: center;
        justify-content: center;
      }
      .nav-link {
        font-size: 1.5rem;
        padding: 1.2rem 0;
        width: 100vw;
        text-align: center;
        color: #fff;
      }
    }

    .section1 {
      position: relative;
      width: 100vw;
      min-height: 100vh;
      display: flex;
      flex-direction: row;
      padding-top: 90px; /* Platz für Nav */
      box-sizing: border-box;
      background: #fff;
      margin-bottom: 0;
    }
    .section1-bg-image {
      position: absolute;
      right: 0;
      top: 0;
      width: 50vw;
      height: 100vh;
      object-fit: cover;
      z-index: 1;
      pointer-events: none;
      clip-path: polygon(100% 0, 100% 100%, 0 100%);
      transition: opacity 0.25s;
    }
    .section1-content-wrap {
      position: relative;
      z-index: 2;
      width: 100vw;
      display: flex;
      flex-direction: row;
      height: 100%;
    }
    .section1-left {
      width: 54%;
      padding: 0 0 0 64px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .section1-title {
      font-size: 7vw;
      font-weight: 700;
      margin-bottom: 0;
      margin-top: 56px;
      line-height: 1.03;
      color: #2A4365;
      text-transform: uppercase;
      text-align: left;
    }
    .section1-desc {
      font-size: 1.20rem;
      margin-bottom: 10px;
      margin-left: 6px;
      text-align: left;
      color: #000000;
    }
    .section1-boxes {
      display: flex;
      gap: 58px;
      margin-top: 30px;
      justify-content: center;
      text-align: center;
    }
    .section1-box {
      border: 1px solid var(--border);
    }

    .responsive-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

.section1-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section1-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  text-align: center;
}

.section1-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section1-box ul li {
  margin-bottom: 8px;
  padding-left: 1em;
  position: relative;
  color: #000000;
  font-size: 0.98rem;
  text-align: left;
}

.section1-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}
    
.section1-right {
      width: 46%;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .section1-main-img {
      margin-top: 70px;
      margin-left: -10px;
      width: 370px;
      height: 260px;
      background: #e3e6ef;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.1rem;
      color: #888;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    }

    .section1-main-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 14px;
      display: block;
}

    .section2 {
      position: relative;
      width: 100vw;
      min-height: 100vh;
      background: #fff;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-start;
      box-sizing: border-box;
      padding-top: 90px; /* Platz für Nav */
      overflow: hidden;
      margin-top: 0;
    }
    .section2-bg-image {
      position: absolute;
      left: 0;
      top: 0;
      width: 50vw;
      height: 100vh;
      object-fit: cover;
      z-index: 1;
      pointer-events: none;
      clip-path: polygon(0 0, 0 100%, 100% 0);
      transition: opacity 0.25s;
    }
    .section2-content-wrap {
      position: relative;
      z-index: 2;
      width: 100vw;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-start;
    }
    .section2-flex-wrap {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100vw;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-start;
      z-index: 3;
      pointer-events: none;
    }
    .section2-texts {
      width: 95%;
      max-width: 700px;
      min-width: 270px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      margin-top: 15vh;
      margin-bottom: 10px;
      margin-right: 275px;
      padding: 30px 34px 22px 34px;
      border-radius: 18px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
      pointer-events: auto;
      text-align: center;
    }
    .section2-title {
      font-size: 2.5rem;
      text-align: center;
      font-weight: 800;
      letter-spacing: 1px;
      color: #2A4365;
    }
    .section2-desc {
      font-size: 1.08rem;
      text-align: center;
      margin: 12px 0 0 0;
      color: #666;
    }
    .section2-contact {
      margin-top: 18px;
      font-size: 1.01rem;
      color: #222;
      text-align: center;
      max-width: 600px;
    }
    .slider-area-outer {
      width: 100vw;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      position: static;
      pointer-events: none;
      margin-top: 20vh;
      margin-right: 150px;
    }
    .slider-area {
      width: auto;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 32px;
      pointer-events: auto;
    }
    .slider-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--primary);
      border: none;
      font-size: 2.2rem;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(35, 64, 142, 0.13);
      transition: background 0.2s;
      user-select: none;
      z-index: 2;
      flex-shrink: 0;
    }
    .slider-btn:focus {
      outline: none;
    }
    .slider-btn:hover {
      background: var(--accent);
      color: var(--primary);
    }
    .slider-btn svg {
      width: 28px;
      height: 28px;
      display: block;
      margin: auto;
    }
    .slider-cards {
      display: flex;
      flex-direction: row;
      gap: 32px;
      align-items: center;
      justify-content: center;
      min-width: calc(3 * 320px + 2 * 32px);
      max-width: calc(3 * 320px + 2 * 32px);
      overflow: visible;
      z-index: 2;
    }
    .slider-card {
      background: #fff;
      border-radius: 18px;
      border: 1.5px solid var(--border);
      box-shadow: 0 6px 24px rgba(35, 64, 142, 0.08);
      width: 320px;
      height: 340px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 0;
      box-sizing: border-box;
      transition: box-shadow 0.2s;
      z-index: 2;
      overflow: hidden;
      position: relative;
    }
    .slider-card img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      border-radius: 18px 18px 0 0;
      display: block;
      background: #e3e6ef;
    }
    .slider-card-divider {
      width: 100%;
      height: 4px;
      background: var(--yellow);
      margin: 0;
      border: none;
      display: block;
    }
    .slider-card-content {
      padding: 16px 18px 14px 18px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      flex-grow: 1;
      min-height: 0;
      box-sizing: border-box;
      overflow: hidden;
    }
    .slider-card-title {
      font-size: 1.10rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 7px;
      margin-top: 0;
      letter-spacing: 0.01em;
      word-break: break-word;
      width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .slider-card-desc {
      font-size: 0.99rem;
      color: #222;
      margin-bottom: 14px;
      line-height: 1.5;
      min-height: 36px;
      word-break: break-word;
      overflow-wrap: break-word;
      width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      flex-grow: 1;
    }
    .slider-card-meta-row {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-top: auto;
      font-size: 1.01rem;
      color: #232323;
      font-weight: 500;
      word-break: break-word;
      gap: 6px;
    }
    .slider-card-meta-row span {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 48%;
      display: block;
    }

    @media (max-width: 900px) {
      .section1,
      .section1-content-wrap,
      .section2-content-wrap,
      .section2-flex-wrap {
        flex-direction: column ;
        align-items: center ;
        justify-content: flex-start ;
        width: 100vw ;
        min-width: 0 ;
      }
      .section1-left,
      .section1-right {
        width: 100% ;
        padding: 0 ;
      }
      .section1-title {
        font-size: 2rem;
        text-align: center;
        margin-top: 32px;
        margin-bottom: 18px;
      }
      .section1-desc {
        text-align: center;
        margin-left: 2px;
        margin-right: 2px;
        margin-bottom: 18px;
        font-size: 1rem;
      }
      .section1-boxes {
        flex-direction: column;
        gap: 18px ;
        margin: 0 ;
        width: 100%;
        padding: 0 18px;
      }
      .section1-box {
        align-items: center ;
        width: 100% ;
        max-width: 420px ;
        margin: 0 auto ;
        box-sizing: border-box ;
      }

      .section1-box h4{
        text-align: center;
      }
      .section1-box ul li{
        text-align: left;
      }
      .section1-bg-image,
      .section2-bg-image,
      .section1-main-img {
        opacity: 0 ;
        display: none ;
      }
      .section2-texts {
        margin: 1vh auto 10px auto ;
        padding: 18px 18px 10px 18px ;
        align-items: center ;
        text-align: center;
        max-width: 98vw ;
        width: 98vw ;
        border-radius: 18px;
        box-sizing: border-box;
      }

      .section2-title {
        font-size: 1.8rem;
      }
      .slider-area-outer {
        margin: 0 ;
        justify-content: center ;
        width: 100vw;
        margin-top: 40px;
      }
      .slider-area {
        width: 100vw;
        gap: 10px;
        justify-content: center;
        align-items: center ;
        margin-bottom: 0;
      }
      .slider-cards {
        min-width: 0;
        max-width: 100vw;
        width: 100vw;
        justify-content: center;
        align-items: center;
      }
      .slider-card {
        width: 95vw;
        max-width: 95vw ;
        height: 340px ;
        margin: 0 ;
      }
      .slider-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        margin: 0 12px ;
        position: relative ;
      }
      .section1,
      .section2 {
        padding-bottom: 0;
      }
      .section1 {
        min-height: 60vh;
      }
      .section2 {
        max-height: 90vh;
      }
    }