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

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.04);
}

.nav-link {
    font-weight: 500;
}

.footer {
    background-color: #343a40;
    color: #fff;
}

.card {
    transition: transform .2s;
    border: none;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,.12);
}

.btn-custom {
    background-image: linear-gradient(to right, #4e54c8, #8f94fb);
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 10px 0 rgba(78, 84, 200, 0.75);
}

.btn-custom:hover {
    background-image: linear-gradient(to right, #8f94fb, #4e54c8);
    box-shadow: 0 8px 25px 0 rgba(78, 84, 200, 0.75);
    transform: translateY(-2px);
}