body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.8;
    background-color: #fdfdfd;
}

h1, h2, h3 {
    font-family: 'Raleway', sans-serif;
    color: #004D40;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 700;
    color: #004D40 !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem !important;
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-color: #004D40;
    overflow: hidden;
}

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

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

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

.bg-accent {
    background-color: #CFD8DC;
}

.bg-taupe {
    background-color: #A1887F;
    color: white;
}

.museum-card {
    border: none;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.btn-mynaro {
    background-color: #004D40;
    color: white;
    border-radius: 0;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s;
}

.btn-mynaro:hover {
    background-color: #A1887F;
    color: white;
}

.timeline {
    border-left: 2px solid #004D40;
    padding-left: 30px;
    position: relative;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #FFD700;
    border: 4px solid #004D40;
    border-radius: 50%;
}

.table-museum {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.table-museum th {
    background: #004D40;
    color: white;
    padding: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.table-museum td {
    background: #f8f9fa;
    padding: 20px;
    border-top: 1px solid #eee;
}

.disclaimer-box {
    border: 1px solid #A1887F;
    padding: 40px;
    background: #fff;
    position: relative;
}

.disclaimer-box::after {
    content: '!';
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 40px;
    color: #FFD700;
    font-weight: bold;
}

.glossary-rail {
    border-left: 1px solid #CFD8DC;
    padding-left: 20px;
}

.stat-strip {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    border-top: 1px solid #CFD8DC;
    border-bottom: 1px solid #CFD8DC;
}

.img-museum {
    filter: sepia(20%) contrast(1.1);
    box-shadow: 20px 20px 0px #CFD8DC;
    max-width: 100%;
    height: auto;
}