        .whychoose-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }

        .whychoose-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .whychoose-section .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .whychoose-section .image-left {
            position: relative;
        }

        .whychoose-section .main-image {
            width: 100%;
            height: 550px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            display: block;
        }

        .whychoose-section .content-right {
            padding-left: 50px;
        }

        .whychoose-section .label {
            color: #d12a69;
            font-size: 16px;
            font-weight: 600;
            text-transform: capitalize;
            margin-bottom: 20px;
        }

        .whychoose-section .main-heading {
            font-size: 48px;
            line-height: 1.2;
            color: #2c3e50;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .whychoose-section .main-heading .highlight {
            color: #d12a69;
        }

        .whychoose-section .description {
            color: #6b7280;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .whychoose-section .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .whychoose-section .feature-item {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .whychoose-section .feature-icon {
            width: 50px;
            height: 50px;
            background-color: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .whychoose-section .feature-icon i {
            font-size: 24px;
            color: #d12a69;
        }

        .whychoose-section .feature-title {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .whychoose-section .feature-text {
            color: #6b7280;
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
        }

        .whychoose-section .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .whychoose-section .stat-card {
            background-color: #fff;
            padding: 30px 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .whychoose-section .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        }

        .whychoose-section .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: #d12a69;
            margin-bottom: 8px;
            line-height: 1;
        }

        .whychoose-section .stat-label {
            color: #2c3e50;
            font-size: 15px;
            font-weight: 600;
            margin: 0;
        }

        @media (max-width: 991px) {
            .whychoose-section .content-right {
                padding-left: 15px;
                margin-top: 40px;
            }

            .whychoose-section .main-heading {
                font-size: 38px;
            }
        }

        @media (max-width: 767px) {
            .whychoose-section {
                padding: 60px 0;
            }

            .whychoose-section .content-right {
                padding-left: 25px;
                padding-right: 25px;
            }

            .whychoose-section .main-heading {
                font-size: 32px;
            }

            .whychoose-section .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .whychoose-section .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .whychoose-section .main-image {
                height: 400px;
            }
        }
