body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f4f4f4;
    color: #333;
}

.container {
    background: white;
    padding: 30px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

h1 {
    font-size: 2em;
    margin-bottom: 0;
}

.subtitle {
    color: #666;
    font-size: 1.2em;
}

section {
    margin-top: 20px;
}

h2 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #efefef;
    padding: 8px;
    margin: 5px 0;
    border-radius: 5px;
}

a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    background: #0073b1;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
}

a:hover {
    background: #005582;
}

