body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
}

header {
    background: #222;
    color: white;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

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

li {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

a {
    display: flex;
    text-decoration: none;
    padding: 15px;
    align-items: center;
    color: inherit;
}

.image-wrapper {
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.image-wrapper img {
    max-height: 200px;
    max-width: 150px;
    border-radius: 4px;
}

.text {
    flex: 1;
}

h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

p {
    margin: 0;
    color: #555;
}