:root {
    --primary: #2C3E50;
    --accent-gold: #F39C12;
    --accent-green: #27AE60;
    --secondary: #BDC3C7;
    --light: #ECF0F1;
    --dark: #1A252F;
    --white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Crimson Text', serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.8;
    background-color: var(--white);
    margin: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

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

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

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Hero */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

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

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

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Cards & Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--light);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* UI Elements */
.btn-accent {
    background: var(--accent-gold);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    font-family: var(--font-heading);
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-accent:hover {
    background: #e67e22;
}

.disclaimer-box {
    border-left: 4px solid var(--accent-gold);
    padding: 20px;
    background: #fdf2e9;
    margin: 30px 0;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--secondary);
    padding: 60px 0 20px;
}

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

.footer h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer a {
    color: var(--secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.cookie-btns button {
    margin-left: 10px;
    padding: 8px 20px;
    cursor: pointer;
}

/* Images */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-standard {
    max-height: 450px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .nav-flex { flex-direction: column; }
    .nav-links { margin-top: 20px; }
    .nav-links a { margin: 0 10px; }
}