body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container {
    background-color: #000; /* Black background for the logo */
    padding: 10px; /* Add some padding around the logo */
    display: inline-block; /* Makes the background fit the logo size */
    border-radius: 5px; /* Optional: round the corners */
}

.logo {
    max-width: 150px; /* Adjust the size of the logo */
    height: auto;
}

h1 {
    color: #d9534f;
}

h2 {
    color: #333;
    text-align: center;
}

h3 {
    color: #555;
}

p {
    line-height: 1.6;
    color: #666;
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #999;
}