body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background: #0056b3;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

header p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

main section {
    margin-bottom: 2rem;
}

main section h2 {
    color: #0056b3;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

main section p, main section ul {
    margin-bottom: 1rem;
}

main section ul {
    list-style-type: disc;
    margin-left: 20px;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #0056b3;
    color: white;
    margin-top: 2rem;
    font-size: 0.9rem;
}
