body {
    background-color: #f4f4f4;
}

.card {
    border: none;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    color: black;
    position: relative;
    margin: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.card .icon-container {
    background-color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-top: -50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card h5 {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}

.card p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.card .btn {
    width: 100px;
    margin-bottom: 10px;
    border-radius: 30px;
    font-size: 14px;
    background-color: #007bff;
    color: white;
    border: none;
}

.card .btn:hover {
    background-color: #0056b3;
}
