* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #005bac;
    color: white;
    text-align: center;
    padding: 20px;
}

header img {
    width: 100px;
    height: auto;
}

h1 {
    font-size: 2em;
    margin-top: 10px;
}

main {
    padding: 20px;
}

.facts, .statistics {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.5em;
    color: #005bac;
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
}

ul li {
    font-size: 1.2em;
    margin-bottom: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #005bac;
    color: white;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}
