body {
    font-family: sans-serif;
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: none;
    min-height: 220px;
    padding: 1.5rem;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}