body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: green;
    color: black;
}

/* Header */
header {
    background: #0a3d62;
    color: white;
    padding: 15px;
    text-align: center;
}

/* Navigation */
nav {
    background: #1e3799;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;       /* IMPORTANT: prevent stacking */
    overflow-x: auto;        /* allow scroll if screen is small */
}

nav a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;     /* keep links in one line */
}

nav a:hover {
    background: #4a69bd;
}


.disclaimer {
  font-size: 14px;
  color: #444;
  margin: 8px 0 12px;
}


/* Main container */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background: white;
}

/* Sections */
.section {
    margin-bottom: 30px;
}

.section h2 {
    color: #0a3d62;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 10px 15px;
    background: #1e3799;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

.button:hover {
    background: #4a69bd;
}

/* Footer */
.footer {
    background: #0a3d62;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

/* ❌ NO mobile media queries on purpose */
/* This ensures phone looks like PC, only scaled */
