﻿  * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: #fff;
      color: #006A53;
    }

    /* Accessibility skip link */
    .sys_skipContent {
      position: absolute;
      left: -9999px;
      top: 4px;
      font-size: 1.4rem;
      text-decoration: none;
    }

    .sys_skipContent:focus {
      left: 14px;
    }

    /* Layout container using Flexbox */
    .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 1rem;
      text-align: center;
    }

    /* Responsive logo */
    .logo {
      max-width: 90%;
      height: auto;
      max-height: 300px;
    }

    /* Language selector */
    .langSelector {
      margin-top: 2rem;
    }

    .langSelector a {
      font-size: 1.75rem;
      margin: 0 1rem;
      color: #006A53;
      text-decoration: none;
      display: inline-block;
    }

    .langSelector a:hover {
      text-decoration: underline;
    }

    /* Hidden h1 for screen readers only */
    h1 {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }