/* CSS PASTE HERE */
        
        /* GLOBAL RESET & FONTS */
        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #ffffff;
        }

        /* MAIN SECTION */
        .why-choose-us {
            padding: 100px 0;
            /* Subtle gradient background for depth */
            background: linear-gradient(to bottom, #ffffff, #fcfafc);
            overflow: hidden;
        }

        .wcu-container {
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
        }

        /* LEFT SIDE CONTENT */
        .wcu-left {
            flex: 1;
        }

        .wcu-subtitle {
            font-size: 15px;
            color: #800080; /* Primary Purple */
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 10px;
        }

        .wcu-heading {
            font-size: 42px;
            color: #1a1a1a; /* Soft Black */
            margin: 0 0 50px;
            line-height: 1.2;
            font-weight: 800;
            position: relative;
        }

        /* Decorative Line under Heading */
        .wcu-heading::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #800080, #000000);
            margin-top: 20px;
            border-radius: 2px;
        }

        /* FEATURE BOXES */
        .wcu-box {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            margin-bottom: 40px;
            padding: 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            background: transparent;
            border: 1px solid transparent;
        }

        /* Hover Effect for Feature Box */
        .wcu-box:hover {
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-color: #f0e6f0;
            transform: translateY(-5px);
        }

        .wcu-number {
            /* Purple Gradient Circle */
            background: linear-gradient(135deg, #800080 0%, #4b004b 100%);
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(128, 0, 128, 0.3);
        }

        .wcu-text h3 {
            font-size: 22px;
            margin: 0 0 10px;
            color: #000000;
            font-weight: 700;
        }

        .wcu-text p {
            color: #555;
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }

        /* RIGHT SIDE IMAGE */
        .wcu-right {
            flex: 1;
            position: relative;
        }

        .wcu-card {
            position: relative;
            padding: 10px; /* Space for border effect */
            background: #fff;
            border-radius: 20px;
            /* Premium Shadow */
            box-shadow: 0 20px 50px rgba(128, 0, 128, 0.15); 
        }

        /* Decorative Background Blob behind image */
        .wcu-right::before {
            content: "";
            position: absolute;
            top: -30px;
            right: -30px;
            width: 100%;
            height: 100%;
            background: #fbf0fb; /* Very light purple */
            border-radius: 20px;
            z-index: -1;
        }

        .wcu-card img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            display: block;
            border: 1px solid #eee;
        }

        /* RESPONSIVE STYLES */

        /* Tablet (max 1024px) */
        @media (max-width: 1024px) {
            .wcu-container {
                gap: 40px;
            }
            .wcu-heading {
                font-size: 36px;
            }
        }

        /* Mobile (max 768px) */
        @media (max-width: 768px) {
            .why-choose-us {
                padding: 60px 0;
            }

            .wcu-container {
                flex-direction: column;
                text-align: center;
            }

            .wcu-heading::after {
                margin: 20px auto 0 auto; /* Center underline */
            }

            .wcu-box {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 20px 10px;
                gap: 15px;
            }

            .wcu-right {
                width: 100%;
                margin-top: 30px;
            }
            
            .wcu-right::before {
                top: -15px;
                right: -15px;
            }
        }

        /* Small Mobile (max 480px) */
        @media (max-width: 480px) {
            .wcu-heading {
                font-size: 28px;
            }
            
            .wcu-number {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }

            .wcu-text h3 {
                font-size: 19px;
            }
        }