:root {
    --primary-color: #0054a6;
    --primary-dark: #003c75;
    --primary-light: #e5f0fa;
    --accent-color: #00a0d2;
    --text-color: #2c3e50;
    --secondary-text: #546e7a;
    --light-text: #ffffff;
    --background: #f9fbfd;
    --divider-color: #e0e6ed;
    --success-color: #34c759;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
    background-color: var(--background);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-text);
    padding: 30px 0 30px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    opacity: 0.05;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.file-date {
    background: #2253a01c;
    color: #2a518f;
    border-radius: 3px;
    padding: 1px 8px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -35px;
    font-size: .85em;
}



.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    text-align: justify;
}

section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
text-align: left;
}

.pdf-icon {
    width: 25px;
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--light-text);
    padding: 0px 0 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
}

@media screen and (max-width: 940px) {
    .hide-on-mobile {
        display: none;
    }
}