:root {
    --primary-bg: #F0F2EB;
    --accent-soft: #A5C9A1;
    --accent-deep: #4A6B4C;
    --text-main: #2C3E2D;
    --text-muted: #6B705C;
    --white: #FFFFFF;
    --max-width: 1400px;
    --content-width: 1100px;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 2rem; }
h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; line-height: 1.3; margin-bottom: 1rem; }

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

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

/* Header & Navigation */
header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent-deep);
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 { color: var(--white); }

/* Grid Systems */
.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; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 992px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Cards & Components */
.card {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-soft);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: opacity 0.2s, transform 0.2s;
}

.btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.btn-dark { background: var(--accent-deep); color: var(--white); }

/* Visual Architecture */
.img-container img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 10px 10px 0px var(--accent-soft);
}

.divider {
    height: 2px;
    background: var(--accent-soft);
    width: 60px;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: #2C3E2D;
    color: #E0E0E0;
    padding: 80px 0 40px;
}

footer a { color: #A5C9A1; text-decoration: none; }
footer h3 { color: var(--white); }

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    border-radius: 8px;
    border-left: 5px solid var(--accent-deep);
}

/* Signature Elements */
.stat-strip {
    display: flex;
    justify-content: space-around;
    background: var(--white);
    padding: 40px;
    margin: 40px 0;
    border: 1px solid var(--accent-soft);
}

.stat-item { text-align: center; }
.stat-value { font-size: 2.5rem; font-weight: 800; color: var(--accent-deep); display: block; }
.stat-label { font-size: 0.9rem; text-transform: uppercase; color: var(--text-muted); }

.glossary-rail {
    background: var(--white);
    padding: 30px;
    border-left: 4px solid var(--accent-soft);
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.matrix-table th, .matrix-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--accent-soft);
}

.matrix-table th { background: var(--accent-soft); color: var(--text-main); }

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-soft);
}

.timeline-item {
    padding-left: 50px;
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--accent-deep);
    border-radius: 50%;
}

.disclaimer-box {
    border: 2px solid #D1D5DB;
    background: #F9FAFB;
    padding: 30px;
    margin: 30px 0;
}