.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

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

.card-text {
    color: #555;
    margin-bottom: 15px;
}

.card-body {
    padding: 30px;
}

.card-footer {
    background-color: #f7f7f7;
    border-top: 1px solid #ccc;
    padding: 15px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Add some space between cards */
.card + .card {
    margin-top: 30px;
}

/* Center the cards in the row */
.row.justify-content-center {
    margin: 0;
}

/* Optional: Add hover effect to cards */
.card:hover {
    transform: scale(1.05);
}