/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #004d99;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 5px solid #ff9900;
}

header h1 {
    font-size: 2rem;
    margin: 0;
}

main {
    padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.image-container {
    text-align: center;
    margin-bottom: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.content-container {
    padding: 0 1rem;
}

section {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

section h2 {
    color: #004d99;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff9900;
    padding-bottom: 5px;
}

section ul, section ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

section ul li, section ol li {
    margin-bottom: 10px;
}

section ul li p, section ol li p {
    margin-top: 5px;
    padding-left: 20px;
}

strong {
    color: #002e66;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 20px;
}