.why-choose-us {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 15px 20px;
            border-radius: 12px;
        }

        .why-choose-us .heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .why-choose-us .heading h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .why-choose-us .heading h2 .highlight {
            color: #ff6b35;
        }

        .why-choose-us .heading p {
            font-size: 16px;
            color: #666;
            margin-top: 10px;
        }

        .process-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 30px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-card {
            flex: 1;
            min-width: 250px;
            text-align: center;
            position: relative;
        }

        .icon-wrapper {
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }

        .process-card:hover .process-number {
            animation: coinFlip 0.6s ease-in-out;
            box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
        }

        @keyframes coinFlip {
            0% {
                transform: rotateY(0) rotateX(0);
            }
            25% {
                transform: rotateY(90deg) rotateX(10deg);
            }
            50% {
                transform: rotateY(180deg) rotateX(0);
            }
            75% {
                transform: rotateY(270deg) rotateX(-10deg);
            }
            100% {
                transform: rotateY(360deg) rotateX(0);
            }
        }

        .process-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: #1a3a52;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .process-card:hover h3 {
            color: #ff6b35;
        }

        .process-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .process-card:hover p {
            color: #555;
        }

        /* Connector Arrow Lines */
        .connector-arrow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            z-index: 0;
        }

        .arrow-line {
            position: absolute;
            top: 50%;
            left: 50%;
            height: 3px;
            background: linear-gradient(90deg, #ff6b35, #ff8c42);
            transform: translateY(-50%);
        }

        .arrow-head {
            position: absolute;
            width: 12px;
            height: 12px;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
        }

        .arrow-head::before,
        .arrow-head::after {
            content: '';
            position: absolute;
            width: 3px;
            height: 8px;
            background: #ff6b35;
            right: 0;
        }

        .arrow-head::before {
            top: -3px;
            transform: rotate(-45deg);
            transform-origin: right bottom;
        }

        .arrow-head::after {
            bottom: -3px;
            transform: rotate(45deg);
            transform-origin: right top;
        }

        /* Desktop Layout */
        @media (min-width: 1024px) {
            .process-container {
                position: relative;
            }

            .process-card {
                position: relative;
                flex: 1;
            }

            .process-card:not(:last-child) {
                margin-right: 0;
            }

            .process-card:not(:last-child)::before {
                content: '';
                position: absolute;
                top: 28px;
                left: calc(50% + 15px);
                width: calc(100% + 40px);
                height: 5px;
                background: linear-gradient(90deg, #ff6b35, #ff8c42);
                z-index: 0;
            }

            .process-card:not(:last-child)::after {
                content: '';
                position: absolute;
                top: 17px;
                right: -30px;
                width: 0;
                height: 0;
                border-left: 15px solid #ff6b35;
                border-top: 15px solid transparent;
                border-bottom: 15px solid transparent;
                z-index: 1;
            }
        }

        /* Tablet Layout */
        @media (min-width: 768px) and (max-width: 1023px) {
            .why-choose-us {
                padding: 40px 20px;
            }

            .why-choose-us .heading h2 {
                font-size: 28px;
            }

            .process-container {
                gap: 20px;
            }

            .process-card {
                min-width: calc(50% - 10px);
            }
        }

        /* Mobile Layout */
        @media (max-width: 767px) {
            .why-choose-us {
                padding: 30px 15px;
            }

            .why-choose-us .heading {
                margin-bottom: 40px;
            }

            .why-choose-us .heading h2 {
                font-size: 24px;
            }

            .process-container {
                flex-direction: column;
                gap: 40px;
            }

            .process-card {
                width: 100%;
                min-width: unset;
            }

            .process-number {
                width: 70px;
                height: 70px;
                font-size: 20px;
            }

            .process-card h3 {
                font-size: 18px;
            }

            .process-card p {
                font-size: 13px;
            }

            /* Hide connectors on mobile */
            .process-card:not(:last-child)::after {
                display: none;
            }
        }

        /* SVG Icons */
        svg {
            width: 40px;
            height: 40px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }