:root {
    --primary-bg: #F0F2F5;
    --text-dark: #333333;
    --accent-green: #4CAF50;
    --accent-blue: #2196F3;
    --accent-yellow: #FFC107;
    --border-color: #CCCCCC;
    --card-bg: #EEEEEE;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-dark);
    font-family: 'Merriweather', serif;
    line-height: 1.8;
    padding-top: 70px;
}

h1, h2, h3, .navbar-brand, .btn {
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
}

h1 { font-weight: 700; font-size: 3rem; margin-bottom: 1.5rem; color: #1a1a1a; }
h2 { font-weight: 700; font-size: 2rem; margin-bottom: 1.2rem; color: var(--accent-blue); position: relative; padding-bottom: 10px; }
h3 { font-weight: 600; font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-dark); }

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

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

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

.module-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.accent-box {
    background-color: #e3f2fd;
    border-left: 5px solid var(--accent-blue);
    padding: 2rem;
    margin: 2rem 0;
}

.btn-outline-accent {
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    background: transparent;
    transition: all 0.3s;
    padding: 10px 30px;
    font-weight: 600;
}

.btn-outline-accent:hover {
    background: var(--accent-blue);
    color: #fff;
}

.img-module {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.compliance-block {
    background: #fff;
    border: 1px solid #ddd;
    padding: 1.5rem;
    margin-top: 3rem;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.table-custom th, .table-custom td {
    border: 1px solid var(--border-color);
    padding: 15px;
    text-align: left;
}

.table-custom th {
    background-color: var(--card-bg);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.glossary-rail {
    border-left: 2px solid var(--accent-yellow);
    padding-left: 20px;
    margin-left: 10px;
}