body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9fafb;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2em;
    color: #2563eb;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.4em;
    color: #1e293b;
    margin-top: 30px;
    border-bottom: 2px solid #cbd5e1;
    padding-bottom: 8px;
}

p {
    font-size: 1em;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.highlight {
    background-color: #e0f2fe;
    padding: 2px 6px;
    border-radius: 4px;
}