:root {
    --primary-bg: #F8F8F8;
    --secondary-bg: #EEF1F4;
    --accent-blue: #A3C1D0;
    --accent-pink: #E0B4AD;
    --text-main: #333333;
    --text-muted: #6F8B9C;
    --border-color: #D0D3D6;
    --max-width: 1440px;
    --transition: all 0.3s ease-in-out;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 0;
    color: var(--text-main);
}

h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 2rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; border-left: 4px solid var(--accent-blue); padding-left: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

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

section {
    padding: 100px 0;
}

.btn-primary {
    background-color: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--text-main);
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--secondary-bg);
    border-color: var(--text-muted);
}

/* Header & Footer */
header {
    background: rgba(248, 248, 248, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

footer {
    background: var(--secondary-bg);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

/* Scandinavian Grid Elements */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.card {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

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

.img-fluid {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 20px 20px 0px var(--secondary-bg);
}

/* Signature Elements */
.glossary-rail {
    border-left: 1px solid var(--accent-blue);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-muted);
}

.stat-strip {
    background: var(--accent-blue);
    color: white;
    padding: 40px 0;
    margin: 40px 0;
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
}

.matrix-table td, .matrix-table th {
    padding: 20px;
    border: 1px solid var(--border-color);
}

.timeline {
    position: relative;
    padding-left: 40px;
    border-left: 2px solid var(--accent-pink);
}

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

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

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: none;
}

.disclaimer-box {
    border: 2px solid var(--accent-pink);
    padding: 30px;
    background: rgba(224, 180, 173, 0.1);
    margin: 20px 0;
}

@media (max-width: 992px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
}