body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    justify-content: flex-start; /* Align content to the top */
    align-items: center;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #0056b3;
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #003f80;
    border-radius: 5px;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto; /* Center the container with margin */
    max-width: 900px;
    width: 90%;
}

h1 {
    color: #0056b3;
    margin-bottom: 20px;
}

h2 {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    margin-top: 30px;
    margin-bottom: 15px;
}

section {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-align: left; /* Align text within sections to left */
}

section p {
    margin-bottom: 10px;
}

section img {
    max-width: 100%;
    height: auto;
    display: block; /* Center image */
    margin: 15px auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


footer {
    margin-top: auto;
    padding: 15px;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    font-size: 0.9em;
}