@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #0B3954;
    --secondary-color: #FF6600;
    --background-color: #F4F6F7;

    --primary-text-color: #333333;
    --secondary-text-color: #F0F0F0;

    --border-outline-color: #D5C2C5;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--background-color);
    color: var(--primary-text-color);
    margin: 0;
    padding: 0;
}

header {
    background: grey;
    color: var(--secondary-text-color);
    text-align: center;
    padding: 100px 20px;
}

    header h1 {
        font-family: 'Oswald', sans-serif;
        font-size: 3em;
        margin: 0;
    }

    header p {
        font-size: 1.2em;
        max-width: 1200px;
        margin: 20px auto;
        line-height: 1.5;
    }

section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    border: 1px solid var(--border-outline-color);
    border-radius: 12px;
}

h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-color);
    font-size: 2em;
    border-left: 6px solid var(--secondary-color);
    padding-left: 10px;
}

.stat-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 30px;
}

.stat {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: 250px;
    margin: 10px;
    padding: 20px;
}

    .stat h3 {
        color: var(--secondary-color);
        font-size: 2em;
        margin-bottom: 10px;
    }

blockquote {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    font-style: italic;
    border-radius: 8px;
    margin-top: 50px;
    position: relative;
}

.sources {
    font-size: 0.9em;
    color: #555;
    line-height: 1.6;
}

footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

.call-to-action {
    text-align: center;
    background: var(--secondary-color);
    color: white;
    padding: 40px 20px;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 60px;
    border-radius: 6px;
}
