/* General Styles */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #1a1a1a;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.title h1 {
    font-size: 1.5em; /* Adjusted size for better readability */
    margin: 0;
    color: #f0f0f0;
}

.container {
    max-width: 800px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

p {
    font-size: 12px; /* Times New Roman, size 12 */
    line-height: 1.6em;
    margin-bottom: 1em;
    color: #d4d4d4;
}

.section {
    margin-bottom: 2em;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #2a2a2a;
}

.section h2 {
    font-size: 16px; /* Size 16 for headers */
    margin-bottom: 0.5em;
    color: #fff;
}

.footer {
    margin-top: 2em;
    color: #888;
    font-size: 12px;
}

/* Additional Styling */
a {
    color: #1e90ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
