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

.top-image img {
    width: 100%;
    height: auto;
    display: block;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
}

.box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: calc(50% - 15px);
    max-width: 500px;
    text-align: center;
}

.box:hover {
    transform: translateY(-10px);
}

.box a {
    color: inherit;
    text-decoration: none;
}

.title {
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    background-color: #0077cc;
    color: white;
}

.box img {
    width: 100%;
    height: auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
