:root {
    --primary-blue: #1a2b3c;
    --anthracite: #2d2d2d;
    --sand-beige: #e5ddd3;
    --sage-green: #8a9a5b;
    --white: #ffffff;
    --light-gray: #f9f9f9;
    --border-color: #d1d1d1;
}

body {
    font-family: 'Libre Baskerville', serif;
    color: var(--anthracite);
    background-color: var(--white);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, .sans-serif {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

h1 { font-size: 3.5rem; margin-bottom: 2rem; color: var(--white); }
h2 { font-size: 2.2rem; margin-top: 3rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--sand-beige); padding-bottom: 10px; }
h3 { font-size: 1.4rem; margin-bottom: 1rem; }

.container-custom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

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

/* Header & Navigation */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-link {
    color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 20px 15px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--sage-green);
}

/* Hero Section */
.hero-block {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-blue);
    overflow: hidden;
}

.hero-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

/* Cards & Grids */
.info-card {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    padding: 40px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--border-color);
}

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

/* Compliance Block */
.compliance-box {
    background-color: var(--sand-beige);
    padding: 40px;
    margin: 60px 0;
    border-left: 5px solid var(--primary-blue);
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-link {
    color: var(--sand-beige);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Buttons */
.btn-nixima {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-blue);
}

.btn-nixima:hover {
    background-color: transparent;
    color: var(--primary-blue);
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--anthracite);
    color: var(--white);
    padding: 20px;
    z-index: 2000;
    display: none;
}

.cookie-btns .btn {
    margin-left: 10px;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-img { width: 100%; opacity: 0.4; }
    h1 { font-size: 2.5rem; }
}