:root {
    --primary: #2F4858;
    --accent: #8FB3B0;
    --secondary: #C0D6D0;
    --light: #E8F0EF;
    --bg: #F5F5F5;
    --text: #333333;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding-top: 70px;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    color: var(--primary);
    font-weight: 700;
}

h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-top: 2rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--secondary); padding-bottom: 0.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.brand-name {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: 1px;
}

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

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(47, 72, 88, 0.6);
}

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

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

.btn-accent {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--primary);
    color: white;
}

.card {
    border: none;
    border-radius: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.footer {
    background-color: var(--primary);
    color: var(--light);
}

.footer h5 { color: var(--accent); }
.footer a { color: var(--light); opacity: 0.8; }
.footer a:hover { opacity: 1; text-decoration: none; }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    display: none;
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 2px; height: 100%;
    background: var(--secondary);
}

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

.quote-block {
    background: var(--light);
    border-left: 5px solid var(--accent);
    padding: 40px;
    font-style: italic;
    font-size: 1.4rem;
}

.img-fluid-custom {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
}

.research-box {
    border: 1px solid var(--secondary);
    padding: 30px;
    background: white;
}

.glossary-rail {
    border-left: 2px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 20px;
}