body {
    font-family: Arial, sans-serif;
    background-color: #0d6efd;
    color: #333;
    text-align: center;
}

h1 {
    color: white;
    margin-top: 30px;
}

.container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.card {
    background: #eaeaea;
    padding: 20px;
    border-radius: 15px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card img {
    width: 180px;
    height: 247px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.card h2 {
    margin: 10px 0;
}

.card p {
    margin: 5px 0;
}

.back {
    margin-top: 30px;
}

.back a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
}