.card {
    border: none;
    text-align: center;
    background: transparent;
}

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

.card-body {
    background-color: #ffffff;
    padding: 20px;
    margin-top: -50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

h2.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

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

    h2.card-title {
        font-size: 1.25rem;
    }

    .card-text {
        font-size: 0.9rem;
    }
}
