.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    background-color: #ffffff;
}

.card-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 14px;
}

.card-text {
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .card-img-top {
        height: 150px;
    }
}