    :root {
      --ukraine-blue: #005BBB;
      --ukraine-blue-dark: #003d82;
      --ukraine-blue-light: #1a6fd4;
      --ukraine-yellow: #FFD700;
      --ukraine-yellow-dark: #e6c200;
      --white: #ffffff;
      --off-white: #f8f7f4;
      --text-dark: #111827;
      --text-mid: #374151;
      --text-light: #6b7280;
      --border: #e5e7eb;
      --section-pad: 90px 40px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Didact Gothic', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--white);
      backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 112px;
      border-bottom: 3px solid var(--ukraine-yellow);
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .nav-logo-icon {
      width: 96px;
      height: 96px;
      object-fit: contain;
    }

    .nav-logo-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--ukraine-blue);
      letter-spacing: 0.08em;
      line-height: 1.2;
    }

    .nav-logo-text span {
      display: block;
      color: var(--ukraine-blue-dark);
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: var(--ukraine-blue);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      transition: color 0.2s;
      text-transform: uppercase;
    }

    .nav-links a:hover {
      color: var(--ukraine-blue-dark);
    }

    .nav-links a.nav-active {
      color: var(--ukraine-blue-dark);
      font-weight: 700;
      position: relative;
    }

    .nav-links a.nav-active::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--ukraine-yellow);
      border-radius: 2px;
    }

    .nav-cta {
      background: var(--ukraine-blue) !important;
      color: var(--white) !important;
      padding: 9px 22px;
      border-radius: 4px;
      font-weight: 700 !important;
    }

    .nav-cta:hover {
      background: var(--ukraine-blue-dark) !important;
      color: var(--white) !important;
    }

    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: 24px;
    }

    .lang-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--text-mid);
      padding: 4px 6px;
      border-radius: 4px;
      transition: color 0.2s, background 0.2s;
    }

    .lang-btn:hover {
      color: var(--ukraine-blue);
    }

    .lang-btn.active {
      color: var(--ukraine-blue);
      background: rgba(0, 91, 187, 0.08);
    }

    .lang-divider {
      color: #D1D5DB;
      font-size: 0.75rem;
      user-select: none;
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 160px 48px 80px;
      position: relative;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      z-index: 0;
      opacity: 0;
      transition: opacity 2s ease-in-out;
    }

    .slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(0, 20, 70, 0.85) 0%, rgba(0, 61, 130, 0.75) 55%, rgba(0, 91, 187, 0.60) 100%);
    }

    .slide.on {
      opacity: 1;
      z-index: 1;
    }

    .slide.off {
      opacity: 1;
      z-index: 0;
    }

    #hero>*:not(.slide):not(.hero-deco) {
      position: relative;
      z-index: 2;
    }

    .hero-deco {
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 215, 0, 0.15);
      border: 1px solid rgba(255, 215, 0, 0.4);
      color: var(--ukraine-yellow);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 28px;
      width: fit-content;
    }

    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--ukraine-yellow);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.8);
      }
    }

    #hero h1 {
      font-family: 'Poiret One', sans-serif;
      font-size: clamp(2.6rem, 5.5vw, 4.8rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.1;
      max-width: 780px;
      margin-bottom: 28px;
    }

    #hero h1 em {
      font-style: normal;
      color: var(--ukraine-yellow);
    }

    #hero p.hero-sub {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.78);
      max-width: 560px;
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 48px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--ukraine-yellow);
      color: var(--ukraine-blue-dark);
      padding: 16px 34px;
      border-radius: 4px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: all 0.2s;
      border: 2px solid var(--ukraine-yellow);
    }

    .btn-primary:hover {
      background: var(--ukraine-yellow-dark);
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 2px solid rgba(255, 255, 255, 0.5);
      color: var(--white);
      padding: 16px 34px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, 0.08);
    }

    .hero-stats {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-top: 52px;
      padding-top: 36px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero-stat-value {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--ukraine-yellow);
      line-height: 1;
      display: block;
    }

    .hero-stat-label {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 5px;
      font-weight: 400;
      letter-spacing: 0.04em;
    }

    .hero-stat-divider {
      width: 1px;
      height: 40px;
      background: rgba(255, 255, 255, 0.2);
    }

  .hero-deco {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 560px;
    height: 560px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 215, 0, 0.18);
    box-shadow:
      0 0 60px 20px rgba(255, 215, 0, 0.04),
      0 0 120px 40px rgba(0, 91, 187, 0.08),
      inset 0 0 60px 20px rgba(255, 215, 0, 0.03);
    pointer-events: none;
  }

  .hero-deco::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.06);
    box-shadow: 0 0 80px 30px rgba(255, 215, 0, 0.05);
  }

  .hero-deco::after {
    content: '';
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.08);
    box-shadow:
      0 0 40px 15px rgba(255, 215, 0, 0.06),
      inset 0 0 40px 15px rgba(255, 215, 0, 0.04);
  }

    /* ── SECTIONS ── */
    section {
      padding: var(--section-pad);
    }

    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ukraine-blue);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 28px;
      height: 2px;
      background: var(--ukraine-yellow);
    }

    .section-title {
      font-family: 'Poiret One', sans-serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 400;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .section-intro {
      font-size: 1.1rem;
      color: var(--text-mid);
      line-height: 1.8;
      max-width: 640px;
      font-weight: 300;
    }

    /* ── LEISTUNGEN ── */
    #leistungen {
      background: var(--off-white);
    }

    .leistungen-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2px;
      margin-top: 60px;
      border: 2px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    .leistung-card {
      background: var(--white);
      padding: 40px 36px;
      border: none;
      border-radius: 16px;
      position: relative;
      transition: all 0.25s;
    }

    .leistung-card:hover {
      background: var(--ukraine-blue);
      z-index: 2;
      transform: scale(1.02);
      box-shadow: 0 20px 50px rgba(0, 91, 187, 0.25);
    }

    .leistung-card:hover .leistung-title,
    .leistung-card:hover .leistung-text {
      color: var(--white);
    }

    .leistung-card:hover .leistung-num {
      color: var(--ukraine-yellow);
    }

    .leistung-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      color: rgba(0, 91, 187, 0.1);
      line-height: 1;
      margin-bottom: 16px;
      transition: color 0.25s;
    }

    .leistung-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 14px;
      transition: color 0.25s;
    }

    .leistung-text {
      font-size: 0.92rem;
      color: var(--text-light);
      line-height: 1.75;
      transition: color 0.25s;
    }

    /* ── ÜBER UNS ── */
    #ueber-uns {
      background: var(--white);
    }

    .ueber-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: stretch;
      margin-top: 60px;
    }

    .ueber-text p {
      font-size: 1.05rem;
      color: var(--text-mid);
      line-height: 1.85;
      font-weight: 300;
      margin-bottom: 20px;
    }

    .ueber-text h3 {
      font-family: 'Poiret One', sans-serif;
      color: var(--ukraine-blue);
      font-size: 2rem;
      margin-top: 32px;
    }

    .fokus-list {
      list-style: none;
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .fokus-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 1.6;
    }

    .fokus-icon {
      width: 36px;
      height: 36px;
      background: rgba(0, 91, 187, 0.08);
      border: 1px solid rgba(0, 91, 187, 0.2);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--ukraine-blue);
      margin-top: 2px;
    }

    .ueber-sidebar {
      background: var(--ukraine-blue);
      border-radius: 8px;
      padding: 48px 40px;
      color: var(--white);
    }

    .ueber-sidebar h3 {
      font-family: 'Poiret One', sans-serif;
      font-size: 1.6rem;
      color: var(--ukraine-yellow);
      margin-bottom: 32px;
      line-height: 1.3;
    }

    .prozess-step {
      display: flex;
      gap: 18px;
      margin-bottom: 28px;
      align-items: flex-start;
    }

    .prozess-step:last-child {
      margin-bottom: 0;
    }

    .step-dot {
      width: 32px;
      height: 32px;
      background: rgba(255, 215, 0, 0.15);
      border: 1px solid rgba(255, 215, 0, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--ukraine-yellow);
      flex-shrink: 0;
    }

    .step-content h4 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.04em;
      margin-bottom: 4px;
      text-transform: uppercase;
    }

    .step-content p {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
    }

    /* ── AKTUELLES ── */
    #aktuelles {
      background: var(--off-white);
    }

    .aktuelles-intro {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
      gap: 40px;
    }

    .aktuelles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .news-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    }

    .news-card-top {
      background: var(--ukraine-blue);
      padding: 28px 28px 20px;
      position: relative;
      border-radius: 16px 16px 0 0;
    }

    .news-tag {
      display: inline-block;
      background: var(--ukraine-yellow);
      color: var(--ukraine-blue-dark);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 14px;
    }

    .news-card-top h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.35;
      letter-spacing: 0.02em;
    }

    .news-card-body {
      padding: 24px 28px;
    }

    .news-meta {
      font-size: 0.78rem;
      color: var(--text-light);
      margin-bottom: 10px;
      letter-spacing: 0.04em;
    }

    .news-card-body p {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .news-link {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--ukraine-blue);
      text-decoration: none;
      letter-spacing: 0.03em;
      opacity: 0.75;
      transition: opacity 0.2s;
    }

    .news-link:hover {
      opacity: 1;
    }

    .news-loading {
      grid-column: 1 / -1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 3rem;
    }

    .news-loading-spinner {
      width: 36px;
      height: 36px;
      border: 3px solid rgba(0, 91, 187, 0.15);
      border-top-color: var(--ukraine-blue);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .btn-more-news {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: none;
      border: 2px solid var(--ukraine-blue);
      color: var(--ukraine-blue);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      padding: 12px 28px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      margin-top: 36px;
    }

    .btn-more-news:hover {
      background: var(--ukraine-blue);
      color: #fff;
    }

    .news-extra {
      display: none;
    }

    .news-extra.open {
      display: contents;
    }

    .news-cta-box {
      background: var(--ukraine-blue);
      border-radius: 8px;
      padding: 40px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .news-cta-box h3 {
      font-family: 'Poiret One', sans-serif;
      font-size: 1.6rem;
      color: var(--white);
      max-width: 480px;
      line-height: 1.3;
    }

    .news-cta-box h3 span {
      color: var(--ukraine-yellow);
    }

    /* ── NETZWERK ── */
    #netzwerk {
      background: var(--white);
      text-align: center;
    }

    #netzwerk .section-label {
      justify-content: center;
    }

    .partner-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      margin-top: 60px;
      padding: 48px 60px;
      background: var(--off-white);
      border-radius: 8px;
    }

    .partner-logo-item {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-light);
      opacity: 0.6;
      transition: opacity 0.2s;
    }

    .partner-logo-item:hover {
      opacity: 1;
    }

    .partner-link {
      color: inherit;
      text-decoration: none;
    }

    .partner-link:hover {
      color: var(--ukraine-yellow);
    }

    /* ── KONTAKT ── */
    #kontakt {
      background: var(--ukraine-blue);
      color: var(--white);
    }

    #kontakt .section-label {
      color: var(--ukraine-yellow);
    }

    #kontakt .section-title {
      color: var(--white);
    }

    .kontakt-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
      margin-top: 60px;
    }

    .kontakt-info h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ukraine-yellow);
      margin-bottom: 20px;
    }

    .kontakt-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .kontakt-icon {
      width: 36px;
      height: 36px;
      background: rgba(255, 215, 0, 0.1);
      border: 1px solid rgba(255, 215, 0, 0.25);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1rem;
    }

    .kontakt-item-text {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.6;
    }

    .kontakt-item-text strong {
      display: block;
      color: var(--white);
      font-weight: 600;
      margin-bottom: 2px;
    }

    .kontakt-form {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      padding: 48px 44px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }

    .form-group label {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.6);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 4px;
      color: var(--white);
      font-family: 'Didact Gothic', sans-serif;
      font-size: 0.95rem;
      padding: 12px 16px;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--ukraine-yellow);
    }

    .form-group select option {
      background: var(--ukraine-blue-dark);
      color: var(--white);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-submit {
      width: 100%;
      background: var(--ukraine-yellow);
      color: var(--ukraine-blue-dark);
      border: none;
      padding: 16px;
      border-radius: 4px;
      font-family: 'Didact Gothic', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 8px;
      transition: all 0.2s;
    }

    .form-submit:hover {
      background: var(--ukraine-yellow-dark);
      transform: translateY(-2px);
    }

    .form-privacy {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.4);
      text-align: center;
      margin-top: 14px;
      line-height: 1.6;
    }

    .rechtliches-box {
      margin-top: 40px;
      padding: 24px 28px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
    }

    .rechtliches-box p {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.7;
    }

    .rechtliches-box a {
      color: rgba(255, 215, 0, 0.8);
      text-decoration: underline;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--white);
      padding: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      border-top: 3px solid var(--ukraine-yellow);
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 16px;
      font-family: 'Barlow Condensed', sans-serif;
      color: var(--text-light);
      font-size: 0.82rem;
      letter-spacing: 0.06em;
    }

    .footer-brand strong {
      color: var(--ukraine-blue);
      display: block;
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .footer-logo {
      width: 96px;
      height: 96px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .footer-links a {
      color: var(--text-light);
      font-size: 0.8rem;
      text-decoration: none;
      transition: color 0.2s;
      letter-spacing: 0.04em;
    }

    .footer-links a:hover {
      color: var(--ukraine-blue);
    }

    
    /* ── Subpage Layout ── */
    .subpage-hero {
      background: var(--ukraine-blue);
      padding: 140px 0 60px;
      margin-top: 112px;
    }
    .subpage-hero-inner {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .subpage-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ukraine-yellow);
      margin-bottom: 16px;
    }
    .subpage-title {
      font-family: 'Poiret One', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: #ffffff;
      line-height: 1.2;
      margin: 0;
    }
    .subpage-content {
      max-width: 860px;
      margin: 0 auto;
      padding: 60px 40px 100px;
    }
    .subpage-content h2 {
      font-family: 'Poiret One', sans-serif;
      font-size: 1.6rem;
      color: var(--ukraine-blue-dark);
      margin: 48px 0 16px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--ukraine-yellow);
    }
    .subpage-content h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ukraine-blue);
      margin: 32px 0 10px;
    }
    .subpage-content p {
      font-family: 'Didact Gothic', sans-serif;
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .subpage-content ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }
    .subpage-content ul li {
      font-family: 'Didact Gothic', sans-serif;
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 8px;
    }
    .subpage-content a {
      color: var(--ukraine-blue);
      text-decoration: underline;
    }
    .subpage-content a:hover {
      color: var(--ukraine-blue-dark);
    }
    .subpage-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      margin-bottom: 24px;
      transition: color 0.2s;
    }
    .subpage-back:hover { color: var(--ukraine-yellow); }
    .cookie-category {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 32px;
      margin-bottom: 16px;
    }
    .cookie-category-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }
    .cookie-category-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ukraine-blue-dark);
    }
    .cookie-badge {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      background: var(--ukraine-yellow);
      color: var(--ukraine-blue-dark);
    }
    .cookie-badge.optional {
      background: rgba(0,91,187,0.1);
      color: var(--ukraine-blue);
    }
    .cookie-empty {
      font-family: 'Didact Gothic', sans-serif;
      font-size: 0.88rem;
      color: var(--text-light);
      font-style: italic;
    }
    .cookie-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .toggle-switch {
      position: relative;
      width: 44px;
      height: 24px;
      background: #D1D5DB;
      border-radius: 100px;
      cursor: pointer;
      transition: background 0.2s;
      border: none;
      flex-shrink: 0;
    }
    .toggle-switch.on { background: var(--ukraine-blue); }
    .toggle-switch::after {
      content: '';
      position: absolute;
      top: 3px;
      left: 3px;
      width: 18px;
      height: 18px;
      background: white;
      border-radius: 50%;
      transition: transform 0.2s;
    }
    .toggle-switch.on::after { transform: translateX(20px); }
    .toggle-switch.disabled { background: var(--ukraine-blue); opacity: 0.6; cursor: not-allowed; }
    .toggle-switch.disabled::after { transform: translateX(20px); }
    .cookie-actions {
      display: flex;
      gap: 12px;
      margin-top: 32px;
      flex-wrap: wrap;
    }
    .cookie-btn {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 12px 28px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s;
      border: 2px solid var(--ukraine-blue);
    }
    .cookie-btn.primary {
      background: var(--ukraine-yellow);
      color: var(--ukraine-blue-dark);
      border-color: var(--ukraine-yellow);
    }
    .cookie-btn.primary:hover { background: #e6c200; border-color: #e6c200; }
    .cookie-btn.secondary {
      background: transparent;
      color: var(--ukraine-blue);
    }
    .cookie-btn.secondary:hover { background: var(--ukraine-blue); color: white; }

    /* ── COOKIE BANNER ── */
    #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: var(--white);
      border-top: 3px solid var(--ukraine-yellow);
      padding: 20px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    }

    #cookie-banner p {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.6;
      max-width: 700px;
    }

    #cookie-banner a {
      color: var(--ukraine-blue);
    }

    .cookie-btns {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
    }

    .cookie-btn-accept {
      background: var(--ukraine-yellow);
      color: var(--ukraine-blue-dark);
      border: none;
      padding: 10px 24px;
      border-radius: 4px;
      font-weight: 700;
      cursor: pointer;
      font-size: 0.88rem;
    }

    .cookie-btn-deny {
      background: none;
      color: var(--ukraine-blue);
      border: 2px solid var(--ukraine-blue);
      padding: 10px 24px;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      font-size: 0.88rem;
    }

    /* ── REVEAL ── */
    .reveal {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .js-loaded .reveal {
      opacity: 0;
      transform: translateY(28px);
    }

    .js-loaded .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav {
        padding: 0 24px;
      }

      .nav-links {
        display: none;
      }

      #hero {
        padding: 130px 24px 60px;
      }

      .hero-stats {
        gap: 32px;
        flex-wrap: wrap;
      }

      .hero-deco {
        display: none;
      }

      section {
        padding: 64px 24px;
      }

      .ueber-layout,
      .kontakt-layout {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .aktuelles-grid {
        grid-template-columns: 1fr;
      }

      footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 40px 24px;
      }

      #cookie-banner {
        padding: 20px 24px;
      }
    }