body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

h1 {
    color: #2c3e50;
    text-align: center;
}

h2 {
    color: #34495e;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 5px;
}

p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

ul {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

.highlight {
    color: #27ae60;
    font-weight: bold;
}

/* Footer Styles */
footer {
    margin-top: 40px;
    padding: 20px;
    background-color: #333;
    color: white;
    text-align: center;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: lightgray;
}

.footer-main-link {
    margin-bottom: 10px;
}

.footer-main-link a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-main-link a:hover {
    color: lightgray;
}

.footer-main-link p {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 15px;
    }
}