﻿    /* Gradient background class - switched to neutral */
    .gradient-bg-primary {
      background: #ffffff;
    }

    /* Process step icon neutral hover */
    .process-step-icon {
      position: relative;
      transition: all 0.3s ease;
    }

    .hover-box:hover .process-step-icon {
      background: #f2f2f2 !important;
    }

    .hover-box:hover .process-step-icon .number {
      color: #222 !important;
      z-index: 2;
    }

    .hover-box:hover .process-step-icon .box-overlay {
      display: none;
    }

    /* Smooth scroll for CTA */
    html {
      scroll-behavior: smooth;
    }
