:root {
    --primary: #333333;
    --bg-light: #F8F8F8;
    --accent-gold: #B8860B;
    --accent-petrol: #005F60;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--bg-light);
    color: var(--primary);
    line-height: 1.8;
    padding-top: 70px;
}

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

h1 { font-weight: 700; font-size: 3.5rem; }
h2 { font-weight: 700; font-size: 2.2rem; margin-bottom: 2rem; border-left: 4px solid var(--accent-gold); padding-left: 1rem; }
h3 { font-weight: 400; font-size: 1.5rem; }

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.card {
    border: none;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.btn-xejara {
    background: var(--primary);
    color: white;
    border-radius: 0;
    padding: 12px 30px;
    border: 1px solid var(--primary);
    transition: 0.3s;
}

.btn-xejara:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

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

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(even) { margin-left: 50%; }
.timeline-item:nth-child(odd) { text-align: right; }

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

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

.matrix-table th, .matrix-table td {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: left;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: white;
    z-index: 9999;
    display: none;
}

.img-container img {
    max-width: 100%;
    height: auto;
    filter: grayscale(20%);
}

.disclaimer-box {
    border: 2px solid var(--accent-gold);
    padding: 30px;
    margin: 40px 0;
    background: #fff;
}

.sidebar-glossary {
    background: var(--bg-light);
    border: 1px solid #ddd;
    padding: 20px;
}

.accent-block {
    background: var(--accent-petrol);
    color: white;
    padding: 60px;
}