        .whyus {
            padding: 80px 0;
        }

        .whyus .section-header {
            margin-bottom: 60px;
        }

        .whyus .section-subtitle {
            color: #999;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .whyus .section-title {
            color: #371c46;
            font-size: 42px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 25px;
            max-width: 500px;
        }

        .whyus .section-description {
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            max-width: 480px;
            margin-bottom: 40px;
        }

        .whyus .btn-get-touch {
            background: #fff;
            color: #000;
            border: 2px solid #000;
            border-radius: 50px;
            padding: 15px 40px 15px 30px;
            font-size: 16px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .whyus .btn-get-touch:hover {
            background: #000;
            color: #fff;
        }

        .whyus .btn-get-touch .arrow-icon {
            background: #ffd740;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .whyus .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: #ddd;
            border: 1px solid #ddd;
        }

        .whyus .feature-card {
            background: #fff;
            padding: 50px 40px;
        }

        .whyus .feature-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .whyus .feature-icon i {
            font-size: 50px;
            color: #d31480;
        }

        .whyus .feature-title {
            color: #371c46;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .whyus .feature-description {
            color: #666;
            font-size: 15px;
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 991px) {
            .whyus .features-grid {
                grid-template-columns: 1fr;
            }

            .whyus .section-title {
                font-size: 32px;
            }
        }

        @media (max-width: 576px) {
            .whyus {
                padding: 50px 0;
            }

            .whyus .feature-card {
                padding: 40px 30px;
            }

            .whyus .section-title {
                font-size: 28px;
            }
        }
