:root {
    --navy: #0f2747;
    --navy-dark: #081a30;
    --gold: #c7a75b;
    --white: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --light-bg: #f7f8fa;
    --container-width: 1200px;
    --transition: 0.3s ease;
}

/* ===========================
   GLOBAL
=========================== */

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font-family: Arial, Helvetica, sans-serif;
    font-size: inherit;
}

button {
    cursor: pointer;
}

