body {
    background-color: #EFEFEF;
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    font-weight: 700;
}

h1 { font-size: 3.5rem; margin-bottom: 2rem; }
h2 { font-size: 2.2rem; margin-top: 3rem; margin-bottom: 1.5rem; border-left: 5px solid #4A90E2; padding-left: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #4A90E2; }

.container { max-width: 1200px; }

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

.btn-primary {
    background-color: #4A90E2;
    border-color: #4A90E2;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
}

.card {
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    background: #FFFFFF;
}

.card:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}

.accent-box {
    background-color: #FFFFFF;
    border-top: 4px solid #50E3C2;
    padding: 2rem;
}

.stat-strip {
    background: #4A90E2;
    color: white;
    padding: 40px 0;
}

.timeline-item {
    padding: 20px;
    border-left: 2px solid #F5A623;
    margin-left: 20px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 25px;
    width: 20px;
    height: 20px;
    background: #F5A623;
    border-radius: 50%;
}

.glossary-rail {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
}

.img-standard {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    box-shadow: 10px 10px 0px #4A90E2;
}

.disclaimer-block {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 30px;
    margin: 40px 0;
}