:root {
    --primary-bg: #F0F2F5;
    --accent-teal: #5C8B82;
    --accent-blue: #A8C6CC;
    --accent-ochre: #E0A84D;
    --text-dark: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --max-width: 1440px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-teal);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #4a716a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-teal);
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 80px;
}

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

.hero-content {
    position: relative;
    color: var(--white);
    max-width: 800px;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-ochre);
    margin: 20px auto;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.img-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 20px 20px 0px var(--accent-blue);
}

.quote-box {
    border-left: 4px solid var(--accent-ochre);
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.25rem;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}

.checklist li::before {
    content: '✓';
    color: var(--accent-teal);
    margin-right: 15px;
    font-weight: bold;
}

.glossary-rail {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.rail-sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
}

.timeline {
    border-left: 2px solid var(--accent-teal);
    margin-left: 20px;
    padding-left: 40px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -51px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--accent-ochre);
    border-radius: 50%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: var(--white);
}

th, td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: var(--accent-blue);
    color: var(--text-dark);
}

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

.footer-content {
    background: #1a1a1a;
    color: #ccc;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .two-col, .card-grid, .footer-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    .glossary-rail { grid-template-columns: 1fr; }
}