:root {
    --primary-color: #1A2B4C;
    --accent-color: #B8860B;
    --bg-light: #F0F0F0;
    --white: #FFFFFF;
    --text-main: #333333;
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h1 { font-size: 3rem; text-transform: uppercase; letter-spacing: 1px; }
h2 { font-size: 2.25rem; border-bottom: 2px solid var(--bg-light); padding-bottom: 10px; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1.2rem; font-size: 1.1rem; color: #444; }

.container-custom {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 15px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color) !important;
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 43, 76, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.section-padding {
    padding: 80px 0;
}

.bg-grey {
    background-color: var(--bg-light);
}

.card-custom {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 0;
    transition: var(--transition);
    height: 100%;
    padding: 30px;
}

.card-custom:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--accent-color);
}

.btn-gold {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: bold;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.btn-gold:hover {
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer a {
    color: var(--bg-light);
    font-size: 0.9rem;
}

.footer a:hover {
    color: var(--accent-color);
}

.img-fluid-custom {
    max-width: 100%;
    height: auto;
    box-shadow: 15px 15px 0px var(--bg-light);
}

.glossary-rail {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    background: var(--bg-light);
    padding: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.accordion .card-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--bg-light);
    cursor: pointer;
}

.accordion .btn-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.disclaimer-box {
    background: #fff9e6;
    border: 1px solid var(--accent-color);
    padding: 25px;
    margin: 20px 0;
}

.form-control {
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 15px;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}