:root {
    --dark-gray: #212121;
    --powder-pink: #F5E0E0;
    --muted-gold: #B89C6F;
    --pale-blue: #D8E2E6;
    --white: #FFFFFF;
}

body {
    font-family: 'Source Serif Pro', serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.7;
}

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

.navbar {
    background-color: var(--dark-gray);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(184, 156, 111, 0.3);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--muted-gold) !important;
}

.hero-section {
    position: relative;
    height: 80vh;
    background-color: var(--dark-gray);
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

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

.bg-soft {
    background-color: var(--pale-blue);
}

.bg-pink {
    background-color: var(--powder-pink);
}

.btn-gold {
    background-color: var(--muted-gold);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #a3895f;
    transform: translateY(-2px);
    color: var(--white);
}

.card-institutional {
    border: 1px solid #eee;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    background: var(--white);
}

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

.footer {
    background-color: var(--dark-gray);
    color: #999;
}

.footer h5, .footer-title {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-divider {
    border-top: 1px solid #333;
    margin: 40px 0;
}

.footer-links a {
    color: #999;
    margin: 0 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-gray);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    display: none;
    border-top: 2px solid var(--muted-gold);
}

.glossary-rail {
    border-left: 2px solid var(--muted-gold);
    padding-left: 20px;
    margin-left: 20px;
}

.matrix-item {
    padding: 30px;
    border-bottom: 1px solid var(--pale-blue);
}

.img-standard {
    max-width: 100%;
    height: auto;
    box-shadow: 10px 10px 0px var(--powder-pink);
}

.myth-fact-box {
    padding: 30px;
    margin-bottom: 20px;
}

.myth { background-color: #f8f8f8; border-left: 5px solid #ccc; }
.fact { background-color: var(--pale-blue); border-left: 5px solid var(--muted-gold); }

.limitation-box {
    border: 1px solid var(--muted-gold);
    padding: 30px;
    margin: 50px 0;
    background-color: #fffaf0;
}