.card {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
    border: 1px solid #ddd;
    border-radius: 35px;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.1), 5px 10px 15px rgba(0, 0, 0, 0.1), 5px 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    height: auto;
    overflow: hidden;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.05);
}

.card-image {
    width: 100%;
    height: 375px;
    object-fit: fill;
}

.card-body {
    padding: 16px;
    text-align: center;
    height: auto;
}

.card-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    max-width: 2.5rem;
    margin-right: 8px;
}

.card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.card-description {
    font-size: 1.3rem;
    color: #555;
    margin-top: 8px;
}

/* Mobile View */
@media screen and (max-width: 480px) {
    .card-title {
        font-size: 1.3rem;
    }
    .card-description {
        font-size: 1rem;
    }
}
