:root {
    --primary: #34495E;
    --secondary: #F5F5F5;
    --accent-green: #2ECC71;
    --accent-red: #E74C3C;
    --accent-orange: #F39C12;
    --text-dark: #2C3E50;
    --text-muted: #7F8C8D;
    --border-light: #BDC3C7;
}

body {
    font-family: 'Merriweather', serif;
    background-color: var(--secondary);
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

h1, h2, h3, .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

section {
    padding: 100px 0;
}

/* Header & Navigation */
header {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-size: 0.9rem;
    margin: 0 15px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-green) !important;
    border-bottom: 2px solid var(--accent-green);
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 73, 94, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Components */
.section-divider {
    border-left: 4px solid var(--accent-green);
    padding-left: 20px;
}

.card-custom {
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.card-custom:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    padding: 15px 40px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: #2c3e50;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: #fff;
}

/* Footer */
footer {
    background: var(--primary);
    color: #ecf0f1;
    padding: 60px 0 20px;
}

footer a {
    color: #bdc3c7;
    text-decoration: none;
}

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

/* UI Elements */
.limitation-block {
    background: #fff;
    border: 2px solid var(--accent-orange);
    padding: 30px;
    margin: 40px 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 20px;
    z-index: 2000;
    display: none;
}

.glossary-rail {
    border-left: 2px solid var(--border-light);
    padding-left: 15px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-muted);
}

.accordion-item {
    background: #fff;
    border: 1px solid var(--border-light);
    margin-bottom: 10px;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.img-fluid-custom {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 10px 10px 0px var(--primary);
}

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

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

.matrix-table th {
    background: var(--primary);
    color: #fff;
}