﻿/* ===== datenschutz.html ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: Arial, sans-serif; line-height: 1.6; color: #222; }
    a { color: #0066cc; text-decoration: none; }
    a:hover { text-decoration: underline; }
    header { background: #ffffff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
    .container { width: 90%; max-width: 1000px; margin: 0 auto; }
    .flex { display: flex; align-items: center; }
    .space-between { justify-content: space-between; }
    .logo { font-size: 1.4rem; font-weight: bold; padding: 15px 0; }
    .logo img { height: 34px; width: auto; margin-right: 10px; vertical-align: middle; }
    nav ul { list-style: none; display: flex; gap: 20px; }
    nav a { font-weight: 500; padding: 20px 0; display: block; }
    .nav-cta a { background: #ff9900; color: #fff; padding: 10px 16px; border-radius: 4px; }
    .nav-cta a:hover { background: #e08900; }
    .page-site .nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
    .page-site .nav-toggle-label { display: none; }
    nav li { position: relative; }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 4px;
      padding: 10px 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      z-index: 200;
    }
    .dropdown-menu li { width: 100%; }
    .dropdown-menu a {
      padding: 10px 16px;
      display: block;
      white-space: nowrap;
    }
    li.dropdown:hover > .dropdown-menu { display: block; }

    section { padding: 50px 0; }
    h1 { font-size: 2rem; margin-bottom: 20px; color: #003366; }
    h2 { font-size: 1.2rem; margin: 22px 0 10px; color: #003366; }
    h3 { font-size: 1.05rem; margin: 16px 0 8px; color: #003366; }
    p { margin-bottom: 10px; }
    ul { margin: 0 0 12px 18px; }

    footer { background: #00152a; color: #ccc; padding: 30px 0; font-size: 0.9rem; margin-top: 40px; }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 3fr 1fr;
      gap: 28px;
    }
    footer h4 { color: #fff; margin-bottom: 10px; }

    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr; }
      nav ul { flex-wrap: wrap; }
    }

/* ===== datev-Updates.html ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: Arial, sans-serif; line-height: 1.6; color: #222; }
    a { color: #0066cc; text-decoration: none; }
    a:hover { text-decoration: underline; }
    header { background: #ffffff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
    .container { width: 90%; max-width: 1200px; margin: 0 auto; }
    .flex { display: flex; align-items: center; }
    .space-between { justify-content: space-between; }
    .logo { font-size: 1.4rem; font-weight: bold; padding: 15px 0; }
    .logo img { height: 34px; width: auto; margin-right: 10px; vertical-align: middle; }
    nav ul { list-style: none; display: flex; gap: 20px; }
    nav a { font-weight: 500; padding: 20px 0; display: block; }
    .nav-cta a { background: #ff9900; color: #fff; padding: 10px 16px; border-radius: 4px; }
    .nav-cta a:hover { background: #e08900; }

    
    /* Dropdown / Unterseiten */
    nav li { position: relative; }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 4px;
      padding: 10px 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      z-index: 200;
    }
    .dropdown-menu li { width: 100%; }
    .dropdown-menu a {
      padding: 10px 16px;
      display: block;
      white-space: nowrap;
    }
    li.dropdown:hover > .dropdown-menu { display: block; }

    @media (max-width: 900px) {
      /* Touch-friendly: Unterseiten im Menü sichtbar */
      .dropdown-menu {
        position: static;
        display: block;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-left: 12px;
      }
      .dropdown-menu a { padding: 10px 0; }
      .page-site .dropdown-menu { margin: 6px 0 8px 12px; }
      .page-site header .container { flex-wrap: wrap; }
      .page-site .nav-toggle-label {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        width: 44px;
        height: 44px;
        border: 1px solid #eee;
        border-radius: 4px;
        background: #fff;
        margin-left: auto;
        cursor: pointer;
        order: 2;
      }
      .page-site .nav-toggle-label span {
        display: block;
        width: 22px;
        height: 2px;
        background: #003366;
        margin: 0;
        transition: transform 0.2s ease, opacity 0.2s ease;
      }
      .page-site nav { width: 100%; order: 3; }
      .page-site nav ul {
        display: none;
        width: 100%;
        padding: 8px 0 12px 0;
      }
      .page-site nav ul li { width: 100%; }
      .page-site nav a { padding: 12px 0; }
      .page-site .nav-cta a { margin: 8px 0; display: inline-block; }
      .page-site .nav-toggle:checked + .nav-toggle-label + nav ul { display: block; }
      .page-site .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
      }
      .page-site .nav-toggle:checked + .nav-toggle-label span:nth-child(2) { opacity: 0; }
      .page-site .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
      }
    }

.hero { background: #003366; color: #fff; padding: 70px 0; }
    .hero h1 { font-size: 2.2rem; margin-bottom: 15px; }
    .hero p { max-width: 800px; }

    .btn-primary {
      display: inline-block;
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: bold;
      background: #ff9900;
      color: #fff;
      margin-top: 20px;
    }
    .btn-primary:hover { background: #e08900; }

    section { padding: 50px 0; }
    section h2 { font-size: 1.8rem; margin-bottom: 25px; color: #003366; }
    
    .info-box {
      background: #f0f8ff;
      border-left: 4px solid #0066cc;
      padding: 20px;
      margin-bottom: 30px;
    }
    .info-box h3 { margin-bottom: 10px; color: #003366; }

    .calendar-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 30px;
      background: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .calendar-table thead {
      background: #003366;
      color: #fff;
    }
    .calendar-table th {
      padding: 15px;
      text-align: left;
      font-weight: 600;
    }
    .calendar-table td {
      padding: 12px 15px;
      border-bottom: 1px solid #eee;
    }
    .calendar-table tbody tr:hover {
      background: #f7f9fb;
    }
    .date-cell {
      font-weight: 600;
      white-space: nowrap;
    }
    .digital73-row {
      background: #fff4e6;
    }
    .digital73-row td {
      color: #cc6600;
      font-weight: 500;
    }
    .badge {
      display: inline-block;
      padding: 4px 8px;
      border-radius: 3px;
      font-size: 0.85rem;
      font-weight: 600;
    }
    .badge-released {
      background: #dfe6e9;
      color: #2d3436;
    }
    .badge-digital73 {
      background: #ff9900;
      color: #fff;
    }

    .year-section {
      margin-bottom: 40px;
    }
    .year-header {
      background: #f7f9fb;
      padding: 15px;
      margin-bottom: 10px;
      border-left: 4px solid #ff9900;
    }
    .year-header h3 {
      color: #003366;
      font-size: 1.5rem;
    }

    .bg-light { background: #f7f9fb; }

    footer { background: #00152a; color: #ccc; padding: 30px 0; font-size: 0.9rem; margin-top: 30px; }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 20px;
    }
    footer h4 { color: #fff; margin-bottom: 10px; }

    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr; }
      nav ul { flex-wrap: wrap; }
      .calendar-table { font-size: 0.9rem; }
      .calendar-table th, .calendar-table td { padding: 10px; }
    }
  

    /* Barrierefreiheit */
    .accessibility-toggle {
      position: fixed;
      right: 0;
      top: 45%;
      transform: translateY(-50%);
      background: #003366;
      color: #fff;
      border: none;
      padding: 12px 14px;
      border-radius: 6px 0 0 6px;
      cursor: pointer;
      z-index: 1000;
      font-weight: 600;
      transition: right 0.2s ease;
    }
    .accessibility-panel {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translate(100%, -50%);
      width: 280px;
      background: #ffffff;
      border: 1px solid #eee;
      border-right: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      padding: 16px;
      z-index: 1000;
      transition: transform 0.2s ease;
    }
    .accessibility-panel.open {
      transform: translate(0, -50%);
    }
    .accessibility-panel h4 {
      margin-bottom: 10px;
      font-size: 1rem;
      color: #003366;
    }
    .accessibility-panel button {
      width: 100%;
      text-align: left;
      margin: 6px 0;
      padding: 6px 8px;
      border: 1px solid #ddd;
      background: #f7f9fb;
      border-radius: 4px;
      cursor: pointer;
      font: inherit;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .accessibility-panel button:hover { background: #eef3f8; }
    .acc-icon {
      width: 22px;
      height: 22px;
      object-fit: contain;
      flex: 0 0 22px;
      display: inline-block;
    }
    .acc-high-contrast .acc-icon { filter: invert(1); }

    .acc-grayscale { filter: grayscale(100%); }
    .acc-negative { filter: invert(1) hue-rotate(180deg); }
    .acc-high-contrast { background: #000; color: #fff; }
    .acc-high-contrast header,
    .acc-high-contrast footer,
    .acc-high-contrast .bg-light,
    .acc-high-contrast .card { background: #000; color: #fff; border-color: #444; }
    .acc-high-contrast a { color: #ffd400; }
    .acc-light-bg { background: #fff; color: #000; }
    .acc-underline-links a { text-decoration: underline; }
    .acc-readable-font { font-family: Verdana, Arial, sans-serif; }

/* ===== datev.html ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: Arial, sans-serif; line-height: 1.6; color: #222; }
    a { color: #0066cc; text-decoration: none; }
    a:hover { text-decoration: underline; }
    header { background: #ffffff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
    .container { width: 90%; max-width: 1200px; margin: 0 auto; }
    .flex { display: flex; align-items: center; }
    .space-between { justify-content: space-between; }
    .logo { font-size: 1.4rem; font-weight: bold; padding: 15px 0; }
    .logo img { height: 34px; width: auto; margin-right: 10px; vertical-align: middle; }
    nav ul { list-style: none; display: flex; gap: 20px; }
    nav a { font-weight: 500; padding: 20px 0; display: block; }
    .nav-cta a { background: #ff9900; color: #fff; padding: 10px 16px; border-radius: 4px; }
    .nav-cta a:hover { background: #e08900; }
    
    /* Dropdown / Unterseiten */
    nav li { position: relative; }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 4px;
      padding: 10px 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      z-index: 200;
    }
    .dropdown-menu li { width: 100%; }
    .dropdown-menu a {
      padding: 10px 16px;
      display: block;
      white-space: nowrap;
    }
    li.dropdown:hover > .dropdown-menu { display: block; }

    @media (max-width: 900px) {
      /* Touch-friendly: Unterseiten im Menü sichtbar */
      .dropdown-menu {
        position: static;
        display: block;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-left: 12px;
      }
      .dropdown-menu a { padding: 10px 0; }
    }

.hero { background: #003366; color: #fff; padding: 70px 0; }
    .hero h1 { font-size: 2.2rem; margin-bottom: 15px; }
    .hero p { max-width: 700px; }
    .btn-primary {
      display: inline-block;
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: bold;
      background: #ff9900;
      color: #fff;
      margin-top: 20px;
    }
    .btn-primary:hover { background: #e08900; }
    section { padding: 50px 0; }
    section h2 { font-size: 1.8rem; margin-bottom: 25px; color: #003366; }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 20px;
    }
    .card {
      border: 1px solid #eee;
      border-radius: 4px;
      padding: 20px;
      background: #fff;
      height: 100%;
    }
    .card h3 { margin-bottom: 10px; font-size: 1.1rem; }
    .card p { font-size: 0.95rem; }
    .bg-light { background: #f7f9fb; }
    .highlight {
      border-left: 4px solid #ff9900;
      padding-left: 15px;
      margin-bottom: 20px;
    }
    ul { margin-left: 18px; margin-bottom: 10px; }
    li { margin-bottom: 5px; }
    footer { background: #00152a; color: #ccc; padding: 30px 0; font-size: 0.9rem; margin-top: 30px; }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 20px;
    }
    footer h4 { color: #fff; margin-bottom: 10px; }
    @media (max-width: 900px) {
      .grid-3, .footer-grid { grid-template-columns: 1fr; }
      nav ul { flex-wrap: wrap; }
    }
  

    /* Barrierefreiheit */
    .accessibility-toggle {
      position: fixed;
      right: 0;
      top: 45%;
      transform: translateY(-50%);
      background: #003366;
      color: #fff;
      border: none;
      padding: 12px 14px;
      border-radius: 6px 0 0 6px;
      cursor: pointer;
      z-index: 1000;
      font-weight: 600;
      transition: right 0.2s ease;
    }
    .accessibility-panel {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translate(100%, -50%);
      width: 280px;
      background: #ffffff;
      border: 1px solid #eee;
      border-right: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      padding: 16px;
      z-index: 1000;
      transition: transform 0.2s ease;
    }
    .accessibility-panel.open {
      transform: translate(0, -50%);
    }
    .accessibility-panel h4 {
      margin-bottom: 10px;
      font-size: 1rem;
      color: #003366;
    }
        .accessibility-panel button {
      width: 100%;
      text-align: left;
      margin: 6px 0;
      padding: 6px 8px;
      border: 1px solid #ddd;
      background: #f7f9fb;
      border-radius: 4px;
      cursor: pointer;
      font: inherit;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .accessibility-panel button:hover { background: #eef3f8; }
        .acc-icon {
      width: 22px;
      height: 22px;
      object-fit: contain;
      flex: 0 0 22px;
      display: inline-block;
    }
    .acc-high-contrast .acc-icon { filter: invert(1); }



    .acc-grayscale { filter: grayscale(100%); }
    .acc-negative { filter: invert(1) hue-rotate(180deg); }
    .acc-high-contrast { background: #000; color: #fff; }
    .acc-high-contrast header,
    .acc-high-contrast footer,
    .acc-high-contrast .bg-light,
    .acc-high-contrast .card { background: #000; color: #fff; border-color: #444; }
    .acc-high-contrast a { color: #ffd400; }
    .acc-light-bg { background: #fff; color: #000; }
    .acc-underline-links a { text-decoration: underline; }
    .acc-readable-font { font-family: Verdana, Arial, sans-serif; }

/* ===== digital_prozess.html ===== */
*{box-sizing:border-box;margin:0;padding:0}
    body{font-family:Arial,sans-serif;line-height:1.6;color:#222}
    a{color:#0066cc;text-decoration:none}
    a:hover{text-decoration:underline}
    header{background:#ffffff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:100}
    .container{width:90%;max-width:1200px;margin:0 auto}
    .flex{display:flex;align-items:center}
    .space-between{justify-content:space-between}
    .logo{font-size:1.4rem;font-weight:bold;padding:15px 0}
    .logo img{height:34px;width:auto;margin-right:10px;vertical-align:middle}
    nav ul{list-style:none;display:flex;gap:20px}
    nav a{font-weight:500;padding:20px 0;display:block}
    .nav-cta a{background:#ff9900;color:#fff;padding:10px 16px;border-radius:4px}
    .nav-cta a:hover{background:#e08900}
    nav li{position:relative}
    .dropdown-menu{display:none;position:absolute;top:100%;left:0;min-width:220px;background:#fff;border:1px solid #eee;border-radius:4px;padding:10px 0;box-shadow:0 4px 12px rgba(0,0,0,0.08);z-index:200}
    .dropdown-menu li{width:100%}
    .dropdown-menu a{padding:10px 16px;display:block;white-space:nowrap}
    li.dropdown:hover .dropdown-menu{display:block}
    .hero{background:linear-gradient(135deg,#003366 0,#4b0082 60%,#0077aa 100%);color:#fff;padding:70px 0}
    .hero h1{font-size:2.2rem;margin-bottom:15px}
    .hero p{max-width:800px;font-size:1.05rem}
    .btn-primary{display:inline-block;padding:12px 24px;border-radius:4px;font-weight:bold;background:#ff9900;color:#fff;margin-top:20px}
    .btn-primary:hover{background:#e08900;text-decoration:none}
    section{padding:50px 0}
    section h2{font-size:1.8rem;margin-bottom:25px;color:#003366}
    section h3{font-size:1.3rem;margin:25px 0 15px;color:#003366}
    .highlight{border-left:4px solid #ff9900;padding-left:15px;margin-bottom:25px}
    .grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
    .card{border:1px solid #eee;border-radius:4px;padding:20px;background:#fff;height:100%}
    .card h3{margin-bottom:10px;font-size:1.1rem}
    .card p{font-size:0.95rem}
    .bg-light{background:#f7f9fb}
    ul{margin-left:18px;margin-bottom:10px}
    li{margin-bottom:5px}
    .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
    .step{background:#fff;border:1px solid #eee;border-radius:4px;padding:18px;position:relative}
    .step-number{position:absolute;top:-12px;left:15px;background:#d92b2b;color:#fff;border-radius:50%;width:26px;height:26px;display:flex;align-items:center;justify-content:center;font-size:0.9rem;font-weight:bold}
    .step h3{margin-top:10px;font-size:1.05rem}
    .badge{display:inline-block;background:#e5f3ff;color:#003366;font-size:0.8rem;padding:2px 8px;border-radius:999px;margin-bottom:6px}
    .highlight-box{background:#fff4e6;border-left:4px solid #ff9900;padding:20px;margin:25px 0}
    footer{background:#00152a;color:#ccc;padding:30px 0;font-size:0.9rem;margin-top:30px}
    .footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:20px}
    footer h4{color:#fff;margin-bottom:10px}
    .accessibility-toggle{position:fixed;right:0;top:45%;transform:translateY(-50%);background:#003366;color:#fff;border:none;padding:12px 14px;border-radius:6px 0 0 6px;cursor:pointer;z-index:1000;font-weight:600;transition:right 0.2s ease}
    .accessibility-panel{position:fixed;right:0;top:50%;transform:translate(100%,-50%);width:280px;background:#ffffff;border:1px solid #eee;border-right:none;box-shadow:0 6px 20px rgba(0,0,0,0.15);padding:16px;z-index:1000;transition:transform 0.2s ease}
    .accessibility-panel.open{transform:translate(0,-50%)}
    .accessibility-panel h4{margin-bottom:10px;font-size:1rem;color:#003366}
    .accessibility-panel button{width:100%;text-align:left;margin:6px 0;padding:6px 8px;border:1px solid #ddd;background:#f7f9fb;border-radius:4px;cursor:pointer;font:inherit;font-size:0.85rem;display:flex;align-items:center;gap:8px;white-space:nowrap}
    .accessibility-panel button:hover{background:#eef3f8}
    .acc-icon{width:22px;height:22px;object-fit:contain;flex:0 0 22px;display:inline-block}
    .acc-grayscale{filter:grayscale(100%)}
    .acc-negative{filter:invert(1) hue-rotate(180deg)}
    .acc-high-contrast{background:#000;color:#fff}
    .acc-high-contrast header,
    .acc-high-contrast footer,
    .acc-high-contrast .bg-light,
    .acc-high-contrast .card{background:#000;color:#fff;border-color:#444}
    .acc-high-contrast a{color:#ffd400}
    .acc-light-bg{background:#fff;color:#000}
.acc-underline-links a{text-decoration:underline}

/* ===== remove orange left stripes globally ===== */
.highlight,
.highlight-box,
.info-box {
  border-left: none !important;
  padding-left: 0 !important;
}
    .acc-readable-font{font-family:Verdana,Arial,sans-serif}
    @media (max-width:900px){
      .grid-2,.footer-grid,.steps{grid-template-columns:1fr}
      nav ul{flex-wrap:wrap}
      .hero{padding:50px 0}
    }

/* ===== impressum.html ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: Arial, sans-serif; line-height: 1.6; color: #222; }
    a { color: #0066cc; text-decoration: none; }
    a:hover { text-decoration: underline; }
    header { background: #ffffff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
    .container { width: 90%; max-width: 1000px; margin: 0 auto; }
    .flex { display: flex; align-items: center; }
    .space-between { justify-content: space-between; }
    .logo { font-size: 1.4rem; font-weight: bold; padding: 15px 0; }
    .logo img { height: 34px; width: auto; margin-right: 10px; vertical-align: middle; }
    nav ul { list-style: none; display: flex; gap: 20px; }
    nav a { font-weight: 500; padding: 20px 0; display: block; }
    .nav-cta a { background: #ff9900; color: #fff; padding: 10px 16px; border-radius: 4px; }
    .nav-cta a:hover { background: #e08900; }
    nav li { position: relative; }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 4px;
      padding: 10px 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      z-index: 200;
    }
    .dropdown-menu li { width: 100%; }
    .dropdown-menu a {
      padding: 10px 16px;
      display: block;
      white-space: nowrap;
    }
    li.dropdown:hover > .dropdown-menu { display: block; }

    section { padding: 50px 0; }
    h1 { font-size: 2rem; margin-bottom: 20px; color: #003366; }
    h2 { font-size: 1.2rem; margin: 20px 0 10px; color: #003366; }
    p { margin-bottom: 10px; }

    footer { background: #00152a; color: #ccc; padding: 30px 0; font-size: 0.9rem; margin-top: 40px; }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 20px;
    }
    footer h4 { color: #fff; margin-bottom: 10px; }

    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr; }
      nav ul { flex-wrap: wrap; }
    }

/* ===== index.html ===== */
/* Basis */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: Arial, sans-serif; line-height: 1.6; color: #222; }
    a { color: #0066cc; text-decoration: none; }
    a:hover { text-decoration: underline; }
    img { max-width: 100%; height: auto; display: block; }
    .brand-red { color: #d33527; }
    a[href^="mailto:"] .brand-red { color: inherit; }
    a[href^="https://www.digital73.de"] .brand-red,
    a[href^="http://www.digital73.de"] .brand-red { color: inherit; }

    /* Layout */
    header { background: #ffffff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
    .container { width: 90%; max-width: 1200px; margin: 0 auto; }
    .flex { display: flex; align-items: center; }
    .space-between { justify-content: space-between; }
    .hero {
      position: relative;
      color: #fff;
      padding: 110px 0;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
    }
    .hero .container { position: relative; z-index: 2; }
    .hero h1 { font-size: 2.4rem; margin-bottom: 20px; }
    .hero p { font-size: 1.1rem; margin-bottom: 20px; }
    .btn-primary, .btn-secondary {
      display: inline-block;
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: bold;
    }
    .btn-primary { background: #ff9900; color: #fff; }
    .btn-primary:hover { background: #e08900; }
    .btn-secondary { border: 1px solid #fff; color: #fff; }
    .btn-secondary:hover { background: rgba(255,255,255,0.1); }

    /* Navigation */
    .logo { font-size: 1.4rem; font-weight: bold; padding: 15px 0; }
    .logo img { height: 34px; width: auto; margin-right: 10px; vertical-align: middle; }
    nav ul { list-style: none; display: flex; gap: 20px; }
    nav li { position: relative; }
    nav a { font-weight: 500; padding: 20px 0; display: block; }
    .nav-cta a { background: #ff9900; color: #fff; padding: 10px 16px; border-radius: 4px; }
    .nav-cta a:hover { background: #e08900; }

    
    /* Dropdown / Unterseiten */
    nav li { position: relative; }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 4px;
      padding: 10px 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      z-index: 200;
    }
    .dropdown-menu li { width: 100%; }
    .dropdown-menu a {
      padding: 10px 16px;
      display: block;
      white-space: nowrap;
    }
    li.dropdown:hover > .dropdown-menu { display: block; }

    @media (max-width: 900px) {
      /* Touch-friendly: Unterseiten im Menü sichtbar */
      .dropdown-menu {
        position: static;
        display: block;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-left: 12px;
      }
      .dropdown-menu a { padding: 10px 0; }
    }

/* Sektionen */
    section { padding: 60px 0; }
    section h2 { font-size: 2rem; margin-bottom: 30px; color: #003366; }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
    }
    .card {
      border: 1px solid #eee;
      border-radius: 4px;
      padding: 20px;
      background: #fff;
      height: 100%;
    }
    .card-icon {
      width: 90px;
      height: 90px;
      object-fit: contain;
      margin-bottom: 12px;
      display: block;
    }
    .card h3 { margin-bottom: 10px; font-size: 1.1rem; }
    .card p { font-size: 0.95rem; }
    .service-card {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .service-card .card-icon {
      flex: 0 0 90px;
      margin-bottom: 0;
    }

    /* Karriere */
    .career-section h3 { font-size: 1.2rem; margin-bottom: 10px; color: #003366; }
    .career-lead {
      background: #f7f9fb;
      border: 1px solid #e6eef6;
      border-radius: 6px;
      padding: 18px;
      margin-bottom: 20px;
    }
    .career-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }
    .career-card {
      border: 1px solid #eee;
      border-radius: 6px;
      padding: 16px;
      background: #fff;
    }
    .career-card h4 { margin-bottom: 8px; color: #003366; font-size: 1.05rem; }
    .career-card p { margin-bottom: 10px; }
    .career-card ul { margin-left: 18px; }

    /* Support & Service */
    .section-support {
      padding: 4rem 0;
    }
    .support-service {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .support-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    .support-box {
      background: #fff;
      border-radius: 8px;
      padding: 1.5rem;
    }
    .support-box h3 {
      margin-top: 0;
    }
    .support-box ul {
      padding-left: 1.2rem;
    }
    .support-contact {
      margin-top: 1rem;
      font-weight: 500;
    }
    .support-cta {
      margin-top: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .support-cta .btn-primary {
      margin-top: 0;
    }
    .support-cta .btn-primary {
      background: #d33527;
      color: #fff;
    }
    .support-cta .btn-primary:hover {
      background: #d33527;
    }
    .support-cta .btn-primary,
    .support-cta .btn-secondary {
      border: 1px solid transparent;
    }
    .support-cta-secondary {
      border: 1px solid #003366;
      color: #003366;
      background: #ffffff;
    }
    .support-cta-secondary:hover {
      background: #e6eef6;
      text-decoration: none;
    }

    /* Barrierefreiheit */
    .accessibility-toggle {
      position: fixed;
      right: 0;
      top: 45%;
      transform: translateY(-50%);
      background: #003366;
      color: #fff;
      border: none;
      padding: 12px 14px;
      border-radius: 6px 0 0 6px;
      cursor: pointer;
      z-index: 1000;
      font-weight: 600;
      transition: right 0.2s ease;
    }
    .accessibility-panel {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translate(100%, -50%);
      width: 280px;
      background: #ffffff;
      border: 1px solid #eee;
      border-right: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      padding: 16px;
      z-index: 1000;
      transition: transform 0.2s ease;
    }
    .accessibility-panel.open {
      transform: translate(0, -50%);
    }
    .accessibility-panel h4 {
      margin-bottom: 10px;
      font-size: 1rem;
      color: #003366;
    }
        .accessibility-panel button {
      width: 100%;
      text-align: left;
      margin: 6px 0;
      padding: 6px 8px;
      border: 1px solid #ddd;
      background: #f7f9fb;
      border-radius: 4px;
      cursor: pointer;
      font: inherit;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .accessibility-panel button:hover { background: #eef3f8; }
        .acc-icon {
      width: 22px;
      height: 22px;
      object-fit: contain;
      flex: 0 0 22px;
      display: inline-block;
    }
    .acc-high-contrast .acc-icon { filter: invert(1); }



    .acc-grayscale { filter: grayscale(100%); }
    .acc-negative { filter: invert(1) hue-rotate(180deg); }
    .acc-high-contrast { background: #000; color: #fff; }
    .acc-high-contrast header,
    .acc-high-contrast footer,
    .acc-high-contrast .bg-light,
    .acc-high-contrast .card { background: #000; color: #fff; border-color: #444; }
    .acc-high-contrast a { color: #ffd400; }
    .acc-light-bg { background: #fff; color: #000; }
    .acc-underline-links a { text-decoration: underline; }
    .acc-readable-font { font-family: Verdana, Arial, sans-serif; }

/* Ensure hero headings remain readable on dark backgrounds */
.hero h1,
.hero p {
  color: #fff;
}

    /* Hintergrundblöcke */
    .bg-light { background: #f7f9fb; }
    .bg-dark { background: #002244; color: #fff; }
    .bg-dark h2 { color: #fff; }

    /* Team */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }
    .team-item { text-align: center; }
    .team-item h3 { margin-top: 10px; margin-bottom: 5px; }
    .team-item p { font-size: 0.9rem; color: #555; }
    .team-avatar {
      width: 240px;
      height: 240px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto;
      background: #ddd;
    }

    /* Kontakt */
    .contact-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 30px;
    }
    form label { display: block; margin-bottom: 5px; font-weight: 600; }
    form input, form textarea {
      width: 100%;
      padding: 8px;
      margin-bottom: 15px;
      border-radius: 4px;
      border: 1px solid #ccc;
      font: inherit;
    }

    /* Footer */
    footer { background: #00152a; color: #ccc; padding: 30px 0; font-size: 0.9rem; }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 2fr 1.5fr 1fr;
      gap: 28px;
    }
    footer h4 { color: #fff; margin-bottom: 10px; }
    footer p {
      margin-bottom: 8px;
      line-height: 1.55;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .grid-3, .grid-4, .team-grid, .contact-grid, .footer-grid, .career-grid {
        grid-template-columns: 1fr;
      }
      .hero { padding: 60px 0; }
    }

    @media (max-width: 600px) {
      .hero h1 { font-size: 1.8rem; }
      .hero { text-align: center; }
      .flex.hero-inner { flex-direction: column; align-items: flex-start; }
      .page-site .hero .btn-primary,
      .page-site .hero .btn-secondary {
        width: 100%;
        text-align: center;
      }
      .page-site .hero .btn-secondary { margin-left: 0 !important; margin-top: 8px; }
      .team-avatar { width: 200px; height: 200px; }
    }

/* ===== it-beratung.html ===== */
*{box-sizing:border-box;margin:0;padding:0}
    body{font-family:Arial,sans-serif;line-height:1.6;color:#222}
    a{color:#0066cc;text-decoration:none}
    a:hover{text-decoration:underline}
    header{background:#ffffff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:100}
    .container{width:90%;max-width:1200px;margin:0 auto}
    .flex{display:flex;align-items:center}
    .space-between{justify-content:space-between}
    .logo{font-size:1.4rem;font-weight:bold;padding:15px 0}
    .logo img{height:34px;width:auto;margin-right:10px;vertical-align:middle}
    nav ul{list-style:none;display:flex;gap:20px}
    nav a{font-weight:500;padding:20px 0;display:block}
    .nav-cta a{background:#ff9900;color:#fff;padding:10px 16px;border-radius:4px}
    .nav-cta a:hover{background:#e08900}
    nav li{position:relative}
    .dropdown-menu{display:none;position:absolute;top:100%;left:0;min-width:220px;background:#fff;border:1px solid #eee;border-radius:4px;padding:10px 0;box-shadow:0 4px 12px rgba(0,0,0,0.08);z-index:200}
    .dropdown-menu li{width:100%}
    .dropdown-menu a{padding:10px 16px;display:block;white-space:nowrap}
    li.dropdown:hover .dropdown-menu{display:block}
    .hero{background:#003366;color:#fff;padding:70px 0}
    .hero h1{font-size:2.2rem;margin-bottom:15px}
    .hero p{max-width:800px;font-size:1.05rem}
    .btn-primary{display:inline-block;padding:12px 24px;border-radius:4px;font-weight:bold;background:#ff9900;color:#fff;margin-top:20px}
    .btn-primary:hover{background:#e08900;text-decoration:none}
    section{padding:50px 0}
    section h2{font-size:1.8rem;margin-bottom:25px;color:#003366}
    section h3{font-size:1.3rem;margin:25px 0 15px;color:#003366}
    .highlight{border-left:4px solid #ff9900;padding-left:15px;margin-bottom:25px}
    .grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
    .grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
    .card{border:1px solid #eee;border-radius:4px;padding:20px;background:#fff;height:100%}
    .card h3{margin-bottom:10px;font-size:1.1rem}
    .card p{font-size:0.95rem}
    .bg-light{background:#f7f9fb}
    ul{margin-left:18px;margin-bottom:10px}
    li{margin-bottom:5px}
    .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
    .step{background:#fff;border:1px solid #eee;border-radius:4px;padding:18px;position:relative}
    .step-number{position:absolute;top:-12px;left:15px;background:#d92b2b;color:#fff;border-radius:50%;width:26px;height:26px;display:flex;align-items:center;justify-content:center;font-size:0.9rem;font-weight:bold}
    .step h3{margin-top:10px;font-size:1.05rem}
    .badge{display:inline-block;background:#e5f3ff;color:#003366;font-size:0.8rem;padding:2px 8px;border-radius:999px;margin-bottom:6px}
    .highlight-box{background:#fff4e6;border-left:4px solid #ff9900;padding:20px;margin:25px 0}
    footer{background:#00152a;color:#ccc;padding:30px 0;font-size:0.9rem;margin-top:30px}
    .footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:20px}
    footer h4{color:#fff;margin-bottom:10px}
    .accessibility-toggle{position:fixed;right:0;top:45%;transform:translateY(-50%);background:#003366;color:#fff;border:none;padding:12px 14px;border-radius:6px 0 0 6px;cursor:pointer;z-index:1000;font-weight:600;transition:right 0.2s ease}
    .accessibility-panel{position:fixed;right:0;top:50%;transform:translate(100%,-50%);width:280px;background:#ffffff;border:1px solid #eee;border-right:none;box-shadow:0 6px 20px rgba(0,0,0,0.15);padding:16px;z-index:1000;transition:transform 0.2s ease}
    .accessibility-panel.open{transform:translate(0,-50%)}
    .accessibility-panel h4{margin-bottom:10px;font-size:1rem;color:#00366}
    .accessibility-panel button{width:100%;text-align:left;margin:6px 0;padding:6px 8px;border:1px solid #ddd;background:#f7f9fb;border-radius:4px;cursor:pointer;font:inherit;font-size:0.85rem;display:flex;align-items:center;gap:8px;white-space:nowrap}
    .accessibility-panel button:hover{background:#eef3f8}
    .acc-icon{width:22px;height:22px;object-fit:contain;flex:0 0 22px;display:inline-block}
    .acc-grayscale{filter:grayscale(100%)}
    .acc-negative{filter:invert(1) hue-rotate(180deg)}
    .acc-high-contrast{background:#000;color:#fff}
    .acc-high-contrast header,
    .acc-high-contrast footer,
    .acc-high-contrast .bg-light,
    .acc-high-contrast .card{background:#000;color:#fff;border-color:#444}
    .acc-high-contrast a{color:#ffd400}
    .acc-light-bg{background:#fff;color:#000}
    .acc-underline-links a{text-decoration:underline}
    .acc-readable-font{font-family:Verdana,Arial,sans-serif}
    @media (max-width:900px){
      .grid-2,.grid-3,.footer-grid,.steps{grid-template-columns:1fr}
      nav ul{flex-wrap:wrap}
      .hero{padding:50px 0}
    }

/* ===== it-beschaffung.html ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: Arial, sans-serif; line-height: 1.6; color: #222; }
    a { color: #0066cc; text-decoration: none; }
    a:hover { text-decoration: underline; }
    header { background: #ffffff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
    .container { width: 90%; max-width: 1200px; margin: 0 auto; }
    .flex { display: flex; align-items: center; }
    .space-between { justify-content: space-between; }
    .logo { font-size: 1.4rem; font-weight: bold; padding: 15px 0; }
    .logo img { height: 34px; width: auto; margin-right: 10px; vertical-align: middle; }
    nav ul { list-style: none; display: flex; gap: 20px; }
    nav a { font-weight: 500; padding: 20px 0; display: block; }
    .nav-cta a { background: #ff9900; color: #fff; padding: 10px 16px; border-radius: 4px; }
    .nav-cta a:hover { background: #e08900; }

    
    /* Dropdown / Unterseiten */
    nav li { position: relative; }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 4px;
      padding: 10px 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      z-index: 200;
    }
    .dropdown-menu li { width: 100%; }
    .dropdown-menu a {
      padding: 10px 16px;
      display: block;
      white-space: nowrap;
    }
    li.dropdown:hover > .dropdown-menu { display: block; }

    @media (max-width: 900px) {
      /* Touch-friendly: Unterseiten im Menü sichtbar */
      .dropdown-menu {
        position: static;
        display: block;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-left: 12px;
      }
      .dropdown-menu a { padding: 10px 0; }
    }

.hero { background: #003366; color: #fff; padding: 70px 0; }
    .hero h1 { font-size: 2.2rem; margin-bottom: 15px; }
    .hero p { max-width: 700px; }

    .btn-primary {
      display: inline-block;
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: bold;
      background: #ff9900;
      color: #fff;
      margin-top: 20px;
    }
    .btn-primary:hover { background: #e08900; }

    section { padding: 50px 0; }
    section h2 { font-size: 1.8rem; margin-bottom: 25px; color: #003366; }
    .highlight {
      border-left: 4px solid #ff9900;
      padding-left: 15px;
      margin-bottom: 25px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 20px;
    }
    .card {
      border: 1px solid #eee;
      border-radius: 4px;
      padding: 20px;
      background: #fff;
      height: 100%;
    }
    .card h3 { margin-bottom: 10px; font-size: 1.1rem; }
    .card p { font-size: 0.95rem; }

    .bg-light { background: #f7f9fb; }
    ul { margin-left: 18px; margin-bottom: 10px; }
    li { margin-bottom: 5px; }

    footer { background: #00152a; color: #ccc; padding: 30px 0; font-size: 0.9rem; margin-top: 30px; }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 20px;
    }
    footer h4 { color: #fff; margin-bottom: 10px; }

    @media (max-width: 900px) {
      .grid-3, .footer-grid { grid-template-columns: 1fr; }
      nav ul { flex-wrap: wrap; }
    }
  

    /* Barrierefreiheit */
    .accessibility-toggle {
      position: fixed;
      right: 0;
      top: 45%;
      transform: translateY(-50%);
      background: #003366;
      color: #fff;
      border: none;
      padding: 12px 14px;
      border-radius: 6px 0 0 6px;
      cursor: pointer;
      z-index: 1000;
      font-weight: 600;
      transition: right 0.2s ease;
    }
    .accessibility-panel {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translate(100%, -50%);
      width: 280px;
      background: #ffffff;
      border: 1px solid #eee;
      border-right: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      padding: 16px;
      z-index: 1000;
      transition: transform 0.2s ease;
    }
    .accessibility-panel.open {
      transform: translate(0, -50%);
    }
    .accessibility-panel h4 {
      margin-bottom: 10px;
      font-size: 1rem;
      color: #003366;
    }
        .accessibility-panel button {
      width: 100%;
      text-align: left;
      margin: 6px 0;
      padding: 6px 8px;
      border: 1px solid #ddd;
      background: #f7f9fb;
      border-radius: 4px;
      cursor: pointer;
      font: inherit;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .accessibility-panel button:hover { background: #eef3f8; }
        .acc-icon {
      width: 22px;
      height: 22px;
      object-fit: contain;
      flex: 0 0 22px;
      display: inline-block;
    }
    .acc-high-contrast .acc-icon { filter: invert(1); }



    .acc-grayscale { filter: grayscale(100%); }
    .acc-negative { filter: invert(1) hue-rotate(180deg); }
    .acc-high-contrast { background: #000; color: #fff; }
    .acc-high-contrast header,
    .acc-high-contrast footer,
    .acc-high-contrast .bg-light,
    .acc-high-contrast .card { background: #000; color: #fff; border-color: #444; }
    .acc-high-contrast a { color: #ffd400; }
    .acc-light-bg { background: #fff; color: #000; }
    .acc-underline-links a { text-decoration: underline; }
    .acc-readable-font { font-family: Verdana, Arial, sans-serif; }

/* ===== IT-Infrastruktur.html ===== */
*{box-sizing:border-box;margin:0;padding:0}
    body{font-family:Arial,sans-serif;line-height:1.6;color:#222}
    a{color:#0066cc;text-decoration:none}
    a:hover{text-decoration:underline}
    header{background:#ffffff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:100}
    .container{width:90%;max-width:1200px;margin:0 auto}
    .flex{display:flex;align-items:center}
    .space-between{justify-content:space-between}
    .logo{font-size:1.4rem;font-weight:bold;padding:15px 0}
    .logo img{height:34px;width:auto;margin-right:10px;vertical-align:middle}
    nav ul{list-style:none;display:flex;gap:20px}
    nav a{font-weight:500;padding:20px 0;display:block}
    .nav-cta a{background:#ff9900;color:#fff;padding:10px 16px;border-radius:4px}
    .nav-cta a:hover{background:#e08900}
    nav li{position:relative}
    .dropdown-menu{display:none;position:absolute;top:100%;left:0;min-width:220px;background:#fff;border:1px solid #eee;border-radius:4px;padding:10px 0;box-shadow:0 4px 12px rgba(0,0,0,0.08);z-index:200}
    .dropdown-menu li{width:100%}
    .dropdown-menu a{padding:10px 16px;display:block;white-space:nowrap}
    li.dropdown:hover .dropdown-menu{display:block}
    .hero{background:linear-gradient(135deg,#003366 0,#0055aa 60%,#00a0c6 100%);color:#fff;padding:70px 0}
    .hero h1{font-size:2.2rem;margin-bottom:15px}
    .hero p{max-width:800px;font-size:1.05rem}
    .btn-primary{display:inline-block;padding:12px 24px;border-radius:4px;font-weight:bold;background:#ff9900;color:#fff;margin-top:20px}
    .btn-primary:hover{background:#e08900;text-decoration:none}
    section{padding:50px 0}
    section h2{font-size:1.8rem;margin-bottom:25px;color:#003366}
    section h3{font-size:1.3rem;margin:25px 0 15px;color:#003366}
    .highlight{border-left:4px solid #ff9900;padding-left:15px;margin-bottom:25px}
    .grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
    .card{border:1px solid #eee;border-radius:4px;padding:20px;background:#fff;height:100%}
    .card h3{margin-bottom:10px;font-size:1.1rem}
    .card p{font-size:0.95rem}
    .bg-light{background:#f7f9fb}
    ul{margin-left:18px;margin-bottom:10px}
    li{margin-bottom:5px}
    .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
    .step{background:#fff;border:1px solid #eee;border-radius:4px;padding:18px;position:relative}
    .step-number{position:absolute;top:-12px;left:15px;background:#d92b2b;color:#fff;border-radius:50%;width:26px;height:26px;display:flex;align-items:center;justify-content:center;font-size:0.9rem;font-weight:bold}
    .step h3{margin-top:10px;font-size:1.05rem}
    .badge{display:inline-block;background:#e5f3ff;color:#003366;font-size:0.8rem;padding:2px 8px;border-radius:999px;margin-bottom:6px}
    .highlight-box{background:#fff4e6;border-left:4px solid #ff9900;padding:20px;margin:25px 0}
    footer{background:#00152a;color:#ccc;padding:30px 0;font-size:0.9rem;margin-top:30px}
    .footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:20px}
    footer h4{color:#fff;margin-bottom:10px}
    .accessibility-toggle{position:fixed;right:0;top:45%;transform:translateY(-50%);background:#003366;color:#fff;border:none;padding:12px 14px;border-radius:6px 0 0 6px;cursor:pointer;z-index:1000;font-weight:600;transition:right 0.2s ease}
    .accessibility-panel{position:fixed;right:0;top:50%;transform:translate(100%,-50%);width:280px;background:#ffffff;border:1px solid #eee;border-right:none;box-shadow:0 6px 20px rgba(0,0,0,0.15);padding:16px;z-index:1000;transition:transform 0.2s ease}
    .accessibility-panel.open{transform:translate(0,-50%)}
    .accessibility-panel h4{margin-bottom:10px;font-size:1rem;color:#003366}
    .accessibility-panel button{width:100%;text-align:left;margin:6px 0;padding:6px 8px;border:1px solid #ddd;background:#f7f9fb;border-radius:4px;cursor:pointer;font:inherit;font-size:0.85rem;display:flex;align-items:center;gap:8px;white-space:nowrap}
    .accessibility-panel button:hover{background:#eef3f8}
    .acc-icon{width:22px;height:22px;object-fit:contain;flex:0 0 22px;display:inline-block}
    .acc-grayscale{filter:grayscale(100%)}
    .acc-negative{filter:invert(1) hue-rotate(180deg)}
    .acc-high-contrast{background:#000;color:#fff}
    .acc-high-contrast header,
    .acc-high-contrast footer,
    .acc-high-contrast .bg-light,
    .acc-high-contrast .card{background:#000;color:#fff;border-color:#444}
    .acc-high-contrast a{color:#ffd400}
    .acc-light-bg{background:#fff;color:#000}
    .acc-underline-links a{text-decoration:underline}
    .acc-readable-font{font-family:Verdana,Arial,sans-serif}
    @media (max-width:900px){
      .grid-3,.footer-grid,.steps{grid-template-columns:1fr}
      nav ul{flex-wrap:wrap}
      .hero{padding:50px 0}
    }

/* ===== Global button color override ===== */
    .btn-primary,
    .support-cta .btn-primary,
    .nav-cta a{
      background:#d33527;
      color:#fff;
    }
    .btn-primary:hover,
    .support-cta .btn-primary:hover,
    .nav-cta a:hover{
      background:#d33527;
    }
    .page-site .nav-cta a{background:#d33527;color:#fff}
    .page-site .nav-cta a:hover{background:#d33527}
    .page-site .hero .btn-primary{background:#d33527;color:#fff}
    .page-site .hero .btn-primary:hover{background:#d33527}
    .page-site #branchen .btn-primary{background:#d33527;color:#fff}
    .page-site #branchen .btn-primary:hover{background:#d33527}
    .page-site #karriere .btn-primary{background:#d33527;color:#fff}
    .page-site #karriere .btn-primary:hover{background:#d33527}

/* ===== index.html footer override ===== */
    .page-site .footer-grid{
      grid-template-columns:2.2fr 1.6fr 1.2fr 1fr;
      gap:32px;
      align-items:start;
    }
    .page-site footer .container{max-width:1200px}
    .page-site .footer-grid > div{min-width:0}
    .page-site footer p{margin-bottom:8px;line-height:1.55}
    .page-site #branchen .card p{
      line-height:1.6;
      hyphens:auto;
      overflow-wrap:anywhere;
    }
    .page-site #branchen .scenario-line{
      margin-bottom:10px;
    }
    .page-site #karriere .card{
      background:#f7f9fb;
    }
    .page-site #karriere .card{
      border:none;
    }
    .page-site #branchen .scenario-start{min-height:6.4em}
    .page-site #branchen .scenario-approach{min-height:6.4em}
    .page-site #branchen .scenario-result{min-height:6.4em}
    .page-site #branchen .scenario-hotellerie .scenario-approach{
      margin-top:1.6em;
    }

/* ===== index.html mobile override ===== */
@media (max-width: 900px) {
  .page-site header .container { flex-wrap: wrap; }
  .page-site nav { width: 100%; }
  .page-site nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 8px 0 12px 0;
  }
  .page-site nav ul li { width: 100%; }
  .page-site .nav-toggle:checked + .nav-toggle-label + nav ul { display: block; }
  .page-site .dropdown-menu {
    position: static;
    display: block;
    width: 100%;
    margin: 6px 0 8px 12px;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .page-site .dropdown-menu li { width: 100%; }
  .page-site .dropdown-menu a { white-space: normal; }
}

/* ===== it-sicherheit.html ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: Arial, sans-serif; line-height: 1.6; color: #222; }
    a { color: #0066cc; text-decoration: none; }
    a:hover { text-decoration: underline; }
    header { background: #ffffff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
    .container { width: 90%; max-width: 1200px; margin: 0 auto; }
    .flex { display: flex; align-items: center; }
    .space-between { justify-content: space-between; }
    .logo { font-size: 1.4rem; font-weight: bold; padding: 15px 0; }
    .logo img { height: 34px; width: auto; margin-right: 10px; vertical-align: middle; }
    nav ul { list-style: none; display: flex; gap: 20px; }
    nav a { font-weight: 500; padding: 20px 0; display: block; }
    /*.nav-cta a { background: #ff9900; color: #fff; padding: 10px 16px; border-radius: 4px; }
    .nav-cta a:hover { background: #e08900; }*/

    
    /* Dropdown / Unterseiten */
    nav li { position: relative; }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 4px;
      padding: 10px 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      z-index: 200;
    }
    .dropdown-menu li { width: 100%; }
    .dropdown-menu a {
      padding: 10px 16px;
      display: block;
      white-space: nowrap;
    }
    li.dropdown:hover > .dropdown-menu { display: block; }

    @media (max-width: 900px) {
      /* Touch-friendly: Unterseiten im Menü sichtbar */
      .dropdown-menu {
        position: static;
        display: block;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-left: 12px;
      }
      .dropdown-menu a { padding: 10px 0; }
    }

.hero { background: linear-gradient(135deg, #003366 0%, #004d99 100%); color: #fff; padding: 70px 0; }
    .hero h1 { font-size: 2.2rem; margin-bottom: 15px; }
    .hero p { max-width: 800px; font-size: 1.1rem; }

    .btn-primary {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 4px;
      font-weight: bold;
      background: #ff9900;
      color: #fff;
      margin-top: 20px;
    }
    .btn-primary:hover { background: #e08900; text-decoration: none; }

    section { padding: 50px 0; }
    section h2 { font-size: 1.8rem; margin-bottom: 25px; color: #003366; }
    section h3 { font-size: 1.3rem; margin: 25px 0 15px; color: #003366; }
    
    .security-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }
    .pillar-card {
      background: #fff;
      border: 2px solid #eee;
      border-radius: 8px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s;
    }
    .pillar-card:hover {
      border-color: #ff9900;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .pillar-icon {
      font-size: 3rem;
      margin-bottom: 15px;
    }
    .pillar-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #003366; }

    .solution-section {
      background: #fff;
      border-left: none;
      padding: 25px;
      margin-bottom: 30px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .solution-section h3 {
      margin-top: 0;
      color: #003366;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin: 15px 0;
    }
    .feature-item {
      display: flex;
      align-items: start;
      gap: 10px;
    }
    .feature-item::before {
      content: "•";
      color: inherit;
      font-weight: bold;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .cove-section {
      background: #fff;
      box-shadow: none;
      border: none;
    }
    .endpoint-section {
      background: #f7f9fb;
      box-shadow: none;
      border: none;
    }

    .bg-light { background: #f7f9fb; }
    .bg-dark { background: #002244; color: #fff; }
    .bg-dark h2, .bg-dark h3 { color: #fff; }
    .bg-white { background: #fff; }

    .highlight-box {
      background: #fff;
      border-left: none;
      padding: 20px;
      margin: 25px 0;
    }
    .highlight-box strong {
      color: #cc6600;
      font-size: 1.1rem;
    }

    ul { margin-left: 18px; margin-bottom: 10px; }
    li { margin-bottom: 8px; }

    footer { background: #00152a; color: #ccc; padding: 30px 0; font-size: 0.9rem; margin-top: 30px; }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 20px;
    }
    footer h4 { color: #fff; margin-bottom: 10px; }

    @media (max-width: 900px) {
      .security-pillars, .feature-grid, .footer-grid { grid-template-columns: 1fr; }
      nav ul { flex-wrap: wrap; }
    }
  

    /* Barrierefreiheit */
    .accessibility-toggle {
      position: fixed;
      right: 0;
      top: 45%;
      transform: translateY(-50%);
      background: #003366;
      color: #fff;
      border: none;
      padding: 12px 14px;
      border-radius: 6px 0 0 6px;
      cursor: pointer;
      z-index: 1000;
      font-weight: 600;
      transition: right 0.2s ease;
    }
    .accessibility-panel {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translate(100%, -50%);
      width: 280px;
      background: #ffffff;
      border: 1px solid #eee;
      border-right: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      padding: 16px;
      z-index: 1000;
      transition: transform 0.2s ease;
    }
    .accessibility-panel.open {
      transform: translate(0, -50%);
    }
    .accessibility-panel h4 {
      margin-bottom: 10px;
      font-size: 1rem;
      color: #003366;
    }
        .accessibility-panel button {
      width: 100%;
      text-align: left;
      margin: 6px 0;
      padding: 6px 8px;
      border: 1px solid #ddd;
      background: #f7f9fb;
      border-radius: 4px;
      cursor: pointer;
      font: inherit;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .accessibility-panel button:hover { background: #eef3f8; }
        .acc-icon {
      width: 22px;
      height: 22px;
      object-fit: contain;
      flex: 0 0 22px;
      display: inline-block;
    }
    .acc-high-contrast .acc-icon { filter: invert(1); }



    .acc-grayscale { filter: grayscale(100%); }
    .acc-negative { filter: invert(1) hue-rotate(180deg); }
    .acc-high-contrast { background: #000; color: #fff; }
    .acc-high-contrast header,
    .acc-high-contrast footer,
    .acc-high-contrast .bg-light,
    .acc-high-contrast .card { background: #000; color: #fff; border-color: #444; }
    .acc-high-contrast a { color: #ffd400; }
    .acc-light-bg { background: #fff; color: #000; }
    .acc-underline-links a { text-decoration: underline; }
    .acc-readable-font { font-family: Verdana, Arial, sans-serif; }

/* ===== karriere.html ===== */
*{box-sizing:border-box;margin:0;padding:0}
    body{font-family:Arial,sans-serif;line-height:1.6;color:#222}
    a{color:#0066cc;text-decoration:none}
    a:hover{text-decoration:underline}
    header{background:#ffffff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:100}
    .container{width:90%;max-width:1200px;margin:0 auto}
    .flex{display:flex;align-items:center}
    .space-between{justify-content:space-between}
    .logo{font-size:1.4rem;font-weight:bold;padding:15px 0}
    .logo img{height:34px;width:auto;margin-right:10px;vertical-align:middle}
    nav ul{list-style:none;display:flex;gap:20px}
    nav a{font-weight:500;padding:20px 0;display:block}
    .nav-cta a{background:#ff9900;color:#fff;padding:10px 16px;border-radius:4px}
    .nav-cta a:hover{background:#e08900}
    nav li{position:relative}
    .dropdown-menu{display:none;position:absolute;top:100%;left:0;min-width:220px;background:#fff;border:1px solid #eee;border-radius:4px;padding:10px 0;box-shadow:0 4px 12px rgba(0,0,0,0.08);z-index:200}
    .dropdown-menu li{width:100%}
    .dropdown-menu a{padding:10px 16px;display:block;white-space:nowrap}
    li.dropdown:hover .dropdown-menu{display:block}
    .hero{background:linear-gradient(135deg,#003366 0,#004d99 100%);color:#fff;padding:70px 0}
    .hero h1{font-size:2.2rem;margin-bottom:15px}
    .hero p{max-width:800px;font-size:1.05rem}
    .badge-hero{display:inline-block;background:#e5f3ff;color:#003366;font-size:0.8rem;padding:3px 10px;border-radius:999px;margin-bottom:10px}
    .btn-primary{display:inline-block;padding:12px 24px;border-radius:4px;font-weight:bold;background:#ff9900;color:#fff;margin-top:20px}
    .btn-primary:hover{background:#e08900;text-decoration:none}
    section{padding:50px 0}
    section h2{font-size:1.8rem;margin-bottom:25px;color:#003366}
    section h3{font-size:1.3rem;margin:25px 0 15px;color:#003366}
    .highlight{border-left:4px solid #ff9900;padding-left:15px;margin-bottom:25px}
    .two-col{display:grid;grid-template-columns:2fr 1.2fr;gap:30px;align-items:flex-start}
    .card{border:1px solid #eee;border-radius:4px;padding:20px;background:#fff}
    .bg-light{background:#f7f9fb}
    ul{margin-left:18px;margin-bottom:10px}
    li{margin-bottom:5px}
    .key-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:10px}
    .fact{border-radius:4px;padding:14px 16px;background:#fff;border:1px solid #eee;font-size:0.95rem}
    .fact strong{display:block;margin-bottom:4px;color:#003366}
    footer{background:#00152a;color:#ccc;padding:30px 0;font-size:0.9rem;margin-top:30px}
    .footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:20px}
    footer h4{color:#fff;margin-bottom:10px}
    .accessibility-toggle{position:fixed;right:0;top:45%;transform:translateY(-50%);background:#003366;color:#fff;border:none;padding:12px 14px;border-radius:6px 0 0 6px;cursor:pointer;z-index:1000;font-weight:600;transition:right 0.2s ease}
    .accessibility-panel{position:fixed;right:0;top:50%;transform:translate(100%,-50%);width:280px;background:#ffffff;border:1px solid #eee;border-right:none;box-shadow:0 6px 20px rgba(0,0,0,0.15);padding:16px;z-index:1000;transition:transform 0.2s ease}
    .accessibility-panel.open{transform:translate(0,-50%)}
    .accessibility-panel h4{margin-bottom:10px;font-size:1rem;color:#003366}
    .accessibility-panel button{width:100%;text-align:left;margin:6px 0;padding:6px 8px;border:1px solid #ddd;background:#f7f9fb;border-radius:4px;cursor:pointer;font:inherit;font-size:0.85rem;display:flex;align-items:center;gap:8px;white-space:nowrap}
    .accessibility-panel button:hover{background:#eef3f8}
    .acc-icon{width:22px;height:22px;object-fit:contain;flex:0 0 22px;display:inline-block}
    .acc-grayscale{filter:grayscale(100%)}
    .acc-negative{filter:invert(1) hue-rotate(180deg)}
    .acc-high-contrast{background:#000;color:#fff}
    .acc-high-contrast header,
    .acc-high-contrast footer,
    .acc-high-contrast .bg-light,
    .acc-high-contrast .card{background:#000;color:#fff;border-color:#444}
    .acc-high-contrast a{color:#ffd400}
    .acc-light-bg{background:#fff;color:#000}
    .acc-underline-links a{text-decoration:underline}
    .acc-readable-font{font-family:Verdana,Arial,sans-serif}
    @media (max-width:900px){
      .two-col,.footer-grid,.key-facts{grid-template-columns:1fr}
      nav ul{flex-wrap:wrap}
      .hero{padding:50px 0}
    }

/* ===== managed_monitor.html ===== */
*{box-sizing:border-box;margin:0;padding:0}
    body{font-family:Arial,sans-serif;line-height:1.6;color:#222}
    a{color:#0066cc;text-decoration:none}
    a:hover{text-decoration:underline}
    header{background:#ffffff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:100}
    .container{width:90%;max-width:1200px;margin:0 auto}
    .flex{display:flex;align-items:center}
    .space-between{justify-content:space-between}
    .logo{font-size:1.4rem;font-weight:bold;padding:15px 0}
    .logo img{height:34px;width:auto;margin-right:10px;vertical-align:middle}
    nav ul{list-style:none;display:flex;gap:20px}
    nav a{font-weight:500;padding:20px 0;display:block}
    .nav-cta a{background:#ff9900;color:#fff;padding:10px 16px;border-radius:4px}
    .nav-cta a:hover{background:#e08900}
    nav li{position:relative}
    .dropdown-menu{display:none;position:absolute;top:100%;left:0;min-width:220px;background:#fff;border:1px solid #eee;border-radius:4px;padding:10px 0;box-shadow:0 4px 12px rgba(0,0,0,0.08);z-index:200}
    .dropdown-menu li{width:100%}
    .dropdown-menu a{padding:10px 16px;display:block;white-space:nowrap}
    li.dropdown:hover .dropdown-menu{display:block}
    .hero{background:linear-gradient(135deg,#003366 0,#004d99 100%);color:#fff;padding:70px 0}
    .hero h1{font-size:2.2rem;margin-bottom:15px}
    .hero p{max-width:800px;font-size:1.05rem}
    .btn-primary{display:inline-block;padding:12px 24px;border-radius:4px;font-weight:bold;background:#ff9900;color:#fff;margin-top:20px}
    .btn-primary:hover{background:#e08900;text-decoration:none}
    section{padding:50px 0}
    section h2{font-size:1.8rem;margin-bottom:25px;color:#003366}
    section h3{font-size:1.3rem;margin:25px 0 15px;color:#003366}
    .highlight{border-left:4px solid #ff9900;padding-left:15px;margin-bottom:25px}
    .grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
    .card{border:1px solid #eee;border-radius:4px;padding:20px;background:#fff;height:100%}
    .card h3{margin-bottom:10px;font-size:1.1rem}
    .card p{font-size:0.95rem}
    .bg-light{background:#f7f9fb}
    ul{margin-left:18px;margin-bottom:10px}
    li{margin-bottom:5px}
    .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
    .step{background:#fff;border:1px solid #eee;border-radius:4px;padding:18px;position:relative}
    .step-number{position:absolute;top:-12px;left:15px;background:#d92b2b;color:#fff;border-radius:50%;width:26px;height:26px;display:flex;align-items:center;justify-content:center;font-size:0.9rem;font-weight:bold}
    .step h3{margin-top:10px;font-size:1.05rem}
    .badge{display:inline-block;background:#e5f3ff;color:#003366;font-size:0.8rem;padding:2px 8px;border-radius:999px;margin-bottom:6px}
    .highlight-box{background:#fff4e6;border-left:4px solid #ff9900;padding:20px;margin:25px 0}
    footer{background:#00152a;color:#ccc;padding:30px 0;font-size:0.9rem;margin-top:30px}
    .footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:20px}
    footer h4{color:#fff;margin-bottom:10px}
    .accessibility-toggle{position:fixed;right:0;top:45%;transform:translateY(-50%);background:#003366;color:#fff;border:none;padding:12px 14px;border-radius:6px 0 0 6px;cursor:pointer;z-index:1000;font-weight:600;transition:right 0.2s ease}
    .accessibility-panel{position:fixed;right:0;top:50%;transform:translate(100%,-50%);width:280px;background:#ffffff;border:1px solid #eee;border-right:none;box-shadow:0 6px 20px rgba(0,0,0,0.15);padding:16px;z-index:1000;transition:transform 0.2s ease}
    .accessibility-panel.open{transform:translate(0,-50%)}
    .accessibility-panel h4{margin-bottom:10px;font-size:1rem;color:#003366}
    .accessibility-panel button{width:100%;text-align:left;margin:6px 0;padding:6px 8px;border:1px solid #ddd;background:#f7f9fb;border-radius:4px;cursor:pointer;font:inherit;font-size:0.85rem;display:flex;align-items:center;gap:8px;white-space:nowrap}
    .accessibility-panel button:hover{background:#eef3f8}
    .acc-icon{width:22px;height:22px;object-fit:contain;flex:0 0 22px;display:inline-block}
    .acc-grayscale{filter:grayscale(100%)}
    .acc-negative{filter:invert(1) hue-rotate(180deg)}
    .acc-high-contrast{background:#000;color:#fff}
    .acc-high-contrast header,
    .acc-high-contrast footer,
    .acc-high-contrast .bg-light,
    .acc-high-contrast .card{background:#000;color:#fff;border-color:#444}
    .acc-high-contrast a{color:#ffd400}
    .acc-light-bg{background:#fff;color:#000}
    .acc-underline-links a{text-decoration:underline}
    .acc-readable-font{font-family:Verdana,Arial,sans-serif}
    @media (max-width:900px){
      .grid-3,.footer-grid,.steps{grid-template-columns:1fr}
      nav ul{flex-wrap:wrap}
      .hero{padding:50px 0}
    }


/* ===== karriere hero size match index ===== */
.page-site.karriere .hero{padding:50px 0}
.page-site .hero{padding:50px 0}
.page-site.home .hero{padding:140px 0}
.page-site .hero .brand-red{color:#fff}
.highlight-box{background:transparent;border-left:none;}
.highlight-box strong{color:#003366;}

@media (max-width:900px){
  .page-site.home .hero{padding:92px 0}
}
