/* Global Base Variables & Reset */
:root {
    /* Color Palette */
    --primary: #063b90;
    --primary-dark: #042861;
    --secondary: #ee3805;
    --secondary-dark: #c42e04;
    --accent: #f1c50e;

    /* Neutrals */
    --dark: #1a1a1a;
    --dark-grey: #333333;
    --light-grey: #f4f6f8;
    --white: #ffffff;
    --border: #e0e0e0;

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 3px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 15px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition: all 0.2s ease-in-out;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.5;
    color: var(--dark-grey);
    background-color: var(--white);
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* Utility Classes */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 0.5em;
    line-height: 1.2;
    font-weight: 600;
}

/* Buttons - Global */
.btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--secondary);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-1px);
}

/* Common Page Header (Used across subpages) */
.page-header {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-header h1 {
    font-size: 42px;
    color: white;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 18px;
    color: white;
    position: relative;
    z-index: 2;
    margin-top: 10px;
    font-weight: 500;
}

/* Mobile Quick Fixes for Base Elements */
@media (max-width: 768px) {
    .page-header {
        height: 180px;
    }

    .page-header h1 {
        font-size: 24px;
    }
}

/* Stats Section (Global) */
.stats-section {
    padding: 30px 0;
    background: var(--secondary);
    color: var(--white);
    border-top: 4px solid rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.stat-item h3 {
    font-size: 36px;
    margin-bottom: 0;
    color: var(--white);
}

.stat-item p {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Stats Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}