:root {
    --bg-primary: #F0F2EB;
    --accent-soft: #A1B57D;
    --accent-deep: #5D7A5C;
    --secondary-bg: #D4C1A5;
    --text-muted: #8E8D8A;
    --text-main: #2C3E2D;
    --max-width: 1120px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Lora', serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent-deep);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

header {
    background: #fff;
    border-bottom: 1px solid var(--secondary-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-deep);
    text-decoration: none;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: color 0.3s;
}

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

.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    max-width: 800px;
}

section {
    padding: 80px 0;
}

.two-col {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.two-col > div {
    flex: 1;
    min-width: 300px;
}

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

.bg-alt {
    background-color: var(--secondary-bg);
    color: var(--text-main);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 20px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

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

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.timeline {
    border-left: 2px solid var(--accent-soft);
    padding-left: 30px;
    margin-left: 20px;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--accent-soft);
    border-radius: 50%;
}

.accordion-item {
    border-bottom: 1px solid var(--secondary-bg);
    padding: 15px 0;
}

.accordion-header {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.btn-main {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-soft);
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-main:hover {
    background-color: var(--accent-deep);
}

footer {
    background: #2C3E2D;
    color: #F0F2EB;
    padding: 60px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a {
    display: block;
    color: #A1B57D;
    text-decoration: none;
    margin-bottom: 10px;
}

.disclaimer-box {
    border: 2px solid var(--accent-soft);
    padding: 20px;
    margin: 20px 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    display: none;
    z-index: 9999;
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.sticky-rail {
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 20px;
    border: 1px solid var(--secondary-bg);
}

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