:root {
    --bg-white: #ffffff;
    --text-dark: #222222;
    --text-muted: #555555;
    --accent-blue: #00265c;
    --border-gray: #e0e0e0;
    --font-sans: 'Helvetica Neue', Arial, sans-serif;
}

/* Global reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-wrap: break-word;
    hyphens: auto;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    min-height: 100vh;
    justify-content: center;
}

h1 {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 0px;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

hr {
    border: none;
    height: 2px;
    background: var(--accent-blue);
    width: 90%;
    margin: 5px auto 20px;
}

.links {
    line-height: 2;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.links a {
    display: flex; 
    justify-content: center;
    width: 100%;
    max-width: 300px;
    text-decoration: none;
    color: var(--bg-white);
    background-color: var(--accent-blue);
    padding: 12px 25px;
    margin: 5px 0;
    border-radius: 5px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

a {
    display: inline-block;
    text-decoration: none;
    color: var(--bg-white);
    background-color: var(--accent-blue);
    padding: 12px 25px;
    margin: 5px 0;
    border-radius: 5px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

a:hover {
    background-color: #003a8c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


footer {
    color: #000000;
    align-items: center;
    font-size: medium;
    position: fixed;
    left: 0;
    bottom: 5vh;
    width: 100%;
    text-align: center;
}