body {
    font-family: Arial, sans-serif;
    background-color: #eae7dc;
    text-align: center;
}
.container {
    width: 50%;
    margin: auto;
    background: #f8f1e5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.header-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
h1 {
    color: #3d405b;
}
h2 {
    color: rgb(0, 0, 0.1);
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    margin: 10px 0;
}
a {
    text-decoration: none;
    color: #3d405b;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table, th, td {
    border: 1px solid #ddd;
}
th, td {
    padding: 10px;
    text-align: center;
}
th {
    background-color: #3d405b;
    color: white;
}