/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
}

/* Header */
.header {
    background-color: #0056b3;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.header h1 {
    margin-bottom: 10px;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
    margin-bottom: 20px;
}

.section h2 {
    margin-bottom: 10px;
    color: #0056b3;
}

.section p {
    margin-bottom: 10px;
}

.section ul {
    margin: 10px 0;
    padding: 0;
    list-style: none;
}

.section ul li {
    margin-bottom: 5px;
    padding-left: 15px;
    text-indent: -15px;
}

.section ul li:before {
    content: "• ";
    color: #0056b3;
}

/* Links */
a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    font-size: 0.9em;
    color: #555;
}

/* Image Styling */
img {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
    height: auto;
}

.fixed-size {
    width: 400px;
    height: 300px;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px;
    border-radius: 5px;
}
