﻿/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
}

/* Step numbers in How It Works */
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

    .step-number:hover {
        transform: scale(1.1);
    }


