
/* -------------------------
   GLOBAL TYPOGRAPHY
------------------------- */

    body {
        font-family: 'Lato', sans-serif;
        margin: 0;
        background: #f4f7fb;
        color: #222;
    }

    /* HEADER jetzt mittelblau */
    header {
        text-align: center;
        padding: 10px 20px 30px;
        background: #1f4f8a;
        color: white;
    }

    header h1 {
        font-size: 2.6rem;
        margin-bottom: 15px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    header p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.95;
    }

    /* GRID 2×2 */
    .menu-container {
        max-width: 90%;
        margin: 40px auto;
        padding: 0 20px;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    @media (max-width: 700px) {
        .menu-container {
            grid-template-columns: 1fr;
        }
    }

    .menu-item {
        background: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        border-left: 6px solid #1f4f8a;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-item h2 {
        margin-top: 0;
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .icon {
        font-size: 1.8rem;
        color: #3c6382;
    }

    .menu-item p {
        margin: 10px 0 20px;
        line-height: 1.5;
        flex-grow: 1;
    }

    /* Buttons einheitlich breit */
    .menu-item a {
        display: block;
        width: 100%;
        text-align: center;
        background: #1f4f8a;
        color: white;
        padding: 14px 0;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.3s ease;
        margin-top: 15px;
    }

    .menu-item a:hover {
        background: #3c7dd9;
    }




/* -------------------------
   FOOTER
------------------------- */
    footer {
        text-align: center;
        padding: 10px 20px 40px 20px;
        font-size: 0.95rem;
        color: #555;
    }

    hr {
        border: none;
        border-top: 1px solid #ccc;
        margin: 20px 40px;
    }


/* -------------------------
   LINK
------------------------- */


footer a {
	color: #1f4f8a;
	text-decoration: none;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

footer a:hover {
	color: #4c68ae;
	text-decoration: underline;
}



/* -------------------------
 TABELLE 
 ------------------------- */

  /* Desktop: Tabelle ohne Linien, Text zentriert */
  table.responsive-table {
    width: 95%;
    border-collapse: collapse;
  }

  table.responsive-table td {
    padding: 10px 12px;
    text-align: center;
    border: none; /* keine Linien */
  }

  /* Mobile: untereinander, ebenfalls ohne Linien */
  @media (max-width: 768px) {
    table.responsive-table,
    table.responsive-table tbody,
    table.responsive-table tr,
    table.responsive-table td {
      display: block;
      width: 100%;
    }

    table.responsive-table tr {
      margin-bottom: 16px;
      padding: 10px 0;
    }

    table.responsive-table td {
      padding: 8px 0;
      border: none;
      text-align: center;
    }

    /* Keine Labels */
    table.responsive-table td::before {
      content: "";
      display: none;
    }
  }
