 /* --- Barrierefreiheits-Leiste Styles --- */
      .bfsg-bar {
          background-color: #fff; /* Dunkelblau */
          color: var(--color-mms-green);
          padding: 10px 0;
          border-bottom: 4px solid var(--color-mms-green); /* Gelb */
          position: relative;
          z-index: 9999;
      }
      .bfsg-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 1rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
      }
      .bfsg-title {
          font-size: 0.875rem;
          font-weight: 600;
          letter-spacing: 0.05em;
          text-transform: uppercase;
      }
      .bfsg-btn {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          background-color: var(--color-mms-green);
          color: #fff;
          padding: 0.5rem 1rem;
          border-radius: 99px;
          font-weight: bold;
          border: 2px solid transparent;
          cursor: pointer;
          transition: background-color 0.2s;
          font-size: 1rem;
      }

@media (max-width: 600px) {
    .bfsg-container {
        flex-direction: column;
    }
}


      .bfsg-btn:hover {
          background-color: #7a8657;
      }
      .bfsg-btn:focus-visible {
          outline: 4px solid #facc15;
          outline-offset: 2px;
      }
      .bfsg-btn.active {
          background-color: #facc15;
          color: black;
      }

      /* --- Modus Einfache Sprache (Klasse am Body) --- */
      .easy-language-active {
          font-family: Arial, Helvetica, sans-serif !important;
          line-height: 1.8 !important;
          font-size: 18px !important; /* Etwas größer */
          background-color: #fff !important;
          color: #000 !important;
      }
      
      /* Verstecken Utility */
      .hidden-access {
          display: none !important;
      }

      /* Styles für den Bereich Einfache Sprache */
      #easy-content {
          max-width: 900px;
          margin: 0 auto;
          padding: 4rem 1rem;
      }
      #easy-content h1 {
          font-size: 3rem;
          margin-bottom: 2rem;
          text-decoration: underline;
      }
      #easy-content h2 {
          font-size: 2rem;
          margin-top: 3rem;
          margin-bottom: 1.5rem;
          color: #1e3a8a;
      }
      #easy-content p, #easy-content li {
          max-width: 70ch;
          margin-bottom: 1.5rem;
          font-size: 1.25rem;
      }
      #easy-content ul {
          padding-left: 2rem;
          list-style-type: disc;
      }
      #easy-content .easy-box {
          background-color: #fef9c3; /* Hellgelb */
          border-left: 8px solid #1e3a8a;
          padding: 2rem;
          margin-bottom: 2rem;
      }
      #easy-content .easy-btn {
          display: inline-block;
          background-color: #1e3a8a;
          color: white;
          padding: 1rem 2rem;
          text-decoration: none;
          font-weight: bold;
          border-radius: 8px;
          margin-top: 1rem;
      }
      #easy-content .easy-btn:hover {
          background-color: #172554;
      }