:root {
    --primary-blue: #0a192f;
    --gold: #c5a059;
    --accent-blue: #172a45;
    --text-light: #ccd6f6;
    --white: #ffffff;
    --section-bg: #112240;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    background-color: var(--primary-blue);
    color: var(--text-light);
    line-height: 1.6;
}

header {
    background: rgba(10, 25, 47, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gold);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
}

.menu a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.menu a:hover { color: var(--gold); }

.section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

h1, h2 { color: var(--white); text-transform: uppercase; }
.gold-text { color: var(--gold); }

.card {
    background: var(--section-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 5px solid var(--gold);
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    background: var(--gold);
    color: var(--primary-blue);
}

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    font-size: 0.8rem;
}