:root {
    --primary-color: #0F4C5C;
    --accent-gold: #FFC300;
    --accent-sage: #8BA177;
    --accent-grey: #EBEBEB;
    --text-dark: #333333;
    --white: #ffffff;
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-dark);
    background-color: var(--accent-grey);
    line-height: 1.7;
    margin: 0;
    overflow-x: hidden;
}

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

h1 { font-size: 3.5rem; color: var(--primary-color); }
h2 { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 1.5rem; position: relative; }
h3 { font-size: 1.5rem; color: var(--primary-color); }

.container-fluid {
    max-width: 1440px;
    padding-left: 5%;
    padding-right: 5%;
}

/* Header & Nav */
.navbar {
    background-color: var(--white);
    border-bottom: 3px solid var(--primary-color);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 900;
    color: var(--primary-color) !important;
    font-size: 1.8rem;
}

.nav-link {
    color: var(--primary-color) !important;
    font-size: 0.9rem;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.bg-primary-deep {
    background-color: var(--primary-color);
    color: var(--white);
}

.bg-white-pure {
    background-color: var(--white);
}

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

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

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

.hero-divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent-gold);
    margin-top: 20px;
}

/* Cards & Grid */
.info-card {
    background: var(--white);
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid var(--accent-gold);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Signature Elements */
.stat-strip {
    background-color: var(--white);
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--accent-grey);
}

.stat-item:last-child { border-right: none; }

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-sage);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
}

.glossary-table {
    width: 100%;
    border-collapse: collapse;
}

.glossary-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: left;
}

.glossary-table td {
    padding: 15px;
    border-bottom: 1px solid var(--accent-grey);
}

.myth-reality-box {
    border: 1px solid var(--primary-color);
    margin-bottom: 20px;
}

.myth-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
}

.reality-body {
    padding: 20px;
    background: var(--white);
}

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

.footer-link {
    color: var(--accent-grey);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    color: var(--text-dark);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    display: none;
}

.btn-custom {
    padding: 12px 30px;
    border-radius: 0;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary-custom:hover {
    background-color: #0a3a46;
    color: var(--white);
}

.btn-accent {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    border: none;
}

.img-fluid-restricted {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.accordion .card {
    border: none;
    border-bottom: 1px solid var(--accent-grey);
    margin-bottom: 0;
}

.accordion .card-header {
    background: var(--white);
    padding: 20px;
    cursor: pointer;
}

.compliance-text {
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.4;
}