:root {
    --primary-color: #2C3E50;
    --accent-olive: #A3CC39;
    --accent-orange: #F39C12;
    --light-grey: #BDC3C7;
    --white: #ffffff;
    --text-dark: #333333;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-heading: 'Georgia', serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 0;
}

h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; border-left: 5px solid var(--accent-olive); padding-left: 15px; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }

.section-padding { padding: 80px 0; }
.section-dark { background-color: var(--primary-color); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-grey { background-color: #f4f7f9; }

.btn-custom {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-olive);
    color: var(--white);
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.btn-custom:hover {
    background-color: #8fb332;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
}

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

.panel-card {
    background: white;
    padding: 40px;
    border: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

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

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

.disclaimer-box {
    border: 2px solid var(--accent-orange);
    padding: 20px;
    margin: 20px 0;
    background-color: rgba(243, 156, 18, 0.05);
}

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

footer a { color: var(--light-grey); text-decoration: none; }
footer a:hover { color: var(--accent-olive); }

.hero-index {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 62, 80, 0.6);
}

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

.hero-content h1 { color: white; margin-bottom: 20px; }

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    margin: 0 15px;
}

.nav-link:hover { color: var(--accent-olive) !important; }

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}