body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
}

/* Center container nicely */
.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 80px;
}

/* Card styling */
.card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    width: 420px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Heading */
h2 {
    text-align: center;
    color: #1a237e;
    margin-bottom: 20px;
}

/* List */
ul {
    padding-left: 20px;
    margin: 0;
}

li {
    margin: 10px 0;
}

/* Links */
a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #1976d2;
}