/* Enroll Now button styling for service cards */
.enroll-button {
    display: inline-block;
    background-color: #1e90ff;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(30, 144, 255, 0.4);
}

.enroll-button:hover {
    background-color: #0d6efd;
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(13, 110, 253, 0.6);
}
