.card {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #ccc;
}

.card-img {
    flex-basis: 150px;
    margin-right: 20px;
}

.card-img img {
    max-width: 100%;
    border-radius: 10%;
}

.card-details {
    flex: 1;
}

.card-title {
    margin-bottom: 10px;
}

.card-title h3 {
    margin: 0;
}

.card-description {
    margin-bottom: 20px;
}

.card-button button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


/* Responsive styles */
@media screen and (max-width: 600px) {
    .card {
        flex-direction: column;
    }

    .card-img {
        margin-bottom: 20px;
    }

    .card-details {
        margin-top: 20px;
    }
}
