:root {
    --primary-color: #334A52;
    --accent-1: #A8DADC;
    --accent-2: #F4D35E;
    --accent-3: #9F5F80;
    --neutral-light: #F8F8F8;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-secondary: #555555;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; margin-top: 2rem; }
h3 { font-size: 1.75rem; }

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

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

.bg-neutral { background-color: var(--neutral-light); }
.bg-primary { background-color: var(--primary-color); color: var(--white); }
.bg-accent-3 { background-color: var(--accent-3); color: var(--white); }

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(51, 74, 82, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.btn-soft {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-1);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
}

.btn-soft:hover {
    background-color: #92c9cb;
    color: var(--primary-color);
    text-decoration: none;
}

.card-custom {
    background: var(--neutral-light);
    border: none;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.img-fluid-custom {
    max-width: 100%;
    height: auto;
    display: block;
}

.nav-link-custom {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-2);
    transition: width 0.3s;
}

.nav-link-custom:hover::after {
    width: 100%;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-link {
    color: var(--accent-1);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--accent-2);
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    border-top: 3px solid var(--accent-2);
}

.disclaimer-box {
    border-left: 5px solid var(--accent-3);
    padding: 20px;
    background: #fdf2f7;
    margin: 30px 0;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2px;
    background: #ddd;
    border: 1px solid #ddd;
}

.matrix-item {
    background: white;
    padding: 20px;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--accent-3);
    border-radius: 50%;
}

.glossary-rail {
    background: var(--neutral-light);
    padding: 20px;
    border-right: 4px solid var(--accent-1);
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-padding { padding: 60px 0; }
}