/* Alap szöveg kontrasztos és nagy méretű */
body { 
    color: black;
    font-size: 1.4rem;
    line-height: 1.6;
    font-family: Arial, sans-serif;
  }
  
  /* Linkek – világos színek, jól látható */
  a {
    color: navy;
    text-decoration: underline;
    font-weight: bold;
  }
  
  a:visited {
    color: violet;
  }
  
  /* Címsorok */
  h1, h2, h3, h4, h5 {
    color: #d60606;
    text-transform: uppercase;
    font-weight: bold;

  }
  
  /* Gombok, input mezők */
  input, textarea, button {
    font-size: 1.4rem;
    background-color: #111;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px;
  }
  
  /* Navigáció */
  .navbar, nav, header, footer {
    background-color: #000;
    border-bottom: 3px solid #fff;
  }
  
  /* Képek – szöveges alternatíva marad, de dekorelemek elrejthetők, ha szükséges */
  img {
    max-width: 100%;
    height: auto;
    border: 2px solid #fff;
  }
  
  /* Rejtse el a háttérképeket, ha vannak */
  body, .boxbackground, .form_style_div {
    background-image: none !important;
  }
  
  /* Megnövelt kattintható területek */
  button, input[type="submit"], input[type="button"] {
    min-height: 50px;
    min-width: 150px;
    cursor: pointer;
  }
  
  /* Extra erős kiemelés */
  strong, b {
    color: #d60606;
    font-weight: bold;
  }

  .skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 1000;
    text-decoration: none;
    font-weight: bold;
  }
  
  .skip-link:focus {
    top: 0;
  }
  