:root {
    --primary-color: #34495E;
    --secondary-color: #7F8C8D;
    --accent-emerald: #2ECC71;
    --accent-orange: #E67E22;
    --bg-light: #ECF0F1;
    --text-dark: #2C3E50;
    --white: #FFFFFF;
    --max-width: 1440px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.2rem; border-left: 5px solid var(--accent-orange); padding-left: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 1rem; }

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

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

/* Museum Style Blocks */
.museum-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.museum-block.reverse {
    flex-direction: row-reverse;
}

.museum-image-wrapper {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
    box-shadow: 20px 20px 0px var(--bg-light);
}

.museum-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(110%);
    transition: transform 0.8s ease;
}

.museum-content {
    flex: 1;
}

/* Grid System */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--bg-light);
    padding: 40px;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    border-color: var(--accent-emerald);
    transform: translateY(-5px);
}

/* UI Elements */
.btn-hyjola {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    border: none;
}

.btn-hyjola:hover {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

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

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-left: 20px;
}

.nav-link:hover {
    color: var(--accent-emerald) !important;
}

.footer-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.footer-bottom {
    background: var(--text-dark);
    color: var(--secondary-color);
    padding: 20px 0;
    font-size: 0.9rem;
}

.compliance-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 4px;
    margin: 40px 0;
    font-style: italic;
}

@media (max-width: 992px) {
    .museum-block, .museum-block.reverse {
        flex-direction: column;
    }
    .museum-image-wrapper {
        flex: 0 0 100%;
        width: 100%;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    h1 { font-size: 2.5rem; }
}