:root {
    --primary: #4A6B6B;
    --accent-gold: #D7B377;
    --accent-blue: #A8C6BC;
    --accent-olive: #8A9A5B;
    --bg-light: #F5F5F5;
    --text-dark: #333333;
    --white: #ffffff;
    --font-main: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: 3.5rem; margin-bottom: 2rem; font-weight: 700; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; border-left: 4px solid var(--accent-gold); padding-left: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--accent-olive); }

p { margin-bottom: 1.5rem; max-width: 85ch; }

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

section { padding: 6rem 0; }

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: var(--font-main);
    font-weight: 600;
}

.btn:hover {
    background: var(--accent-gold);
    transform: scale(1.02);
}

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    text-decoration: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent-gold); }

.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content { position: relative; z-index: 1; text-align: center; width: 100%; }
.hero-content h1 { color: var(--white); }

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-bottom: 3px solid var(--accent-blue);
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.two-col { display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.two-col > div { flex: 1; min-width: 300px; }
.two-col.rev { flex-direction: row-reverse; }

.img-frame {
    position: relative;
    overflow: hidden;
}

.img-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h3 { color: var(--accent-gold); border: none; padding: 0; }
.footer a { color: var(--accent-blue); text-decoration: none; display: block; margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; font-size: 0.9rem; }

.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    display: none;
    z-index: 9999;
}

.cookie-btns { margin-top: 1rem; }
.cookie-btns button, .cookie-btns a {
    margin-right: 1rem;
    padding: 5px 15px;
    cursor: pointer;
    background: var(--primary);
    border: none;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
}

.quote-block {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary);
    border-left: 8px solid var(--accent-gold);
    padding: 2rem;
    margin: 3rem 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    padding: 2rem;
    border-left: 2px solid var(--accent-gold);
    position: relative;
    margin-bottom: 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 2.5rem;
    width: 16px;
    height: 16px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.glossary-table { width: 100%; border-collapse: collapse; }
.glossary-table td { padding: 1.5rem; border-bottom: 1px solid #ddd; }
.glossary-term { font-weight: 700; color: var(--primary); width: 30%; }

.disclaimer-box {
    background: #fff8e1;
    border: 2px solid var(--accent-gold);
    padding: 2.5rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .two-col { gap: 2rem; }
}