/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

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

/* Header */
header {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

h1 {
    color: #007bff;
}

/* Sections */
h2 {
    color: #2c3e50;
    margin-top: 20px;
}

p {
    line-height: 1.6;
    font-size: 16px;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    background-color: #007bff;
    color: white;
    font-size: 14px;
    border-radius: 0 0 10px 10px;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}
