.why-choose-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            padding: 50px;
            animation: slideUp 0.8s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .why {
            text-align: center;
            margin-bottom: 50px;
            font-size: 30px;
            font-weight: 700;
            color: #333;
            animation: fadeInDown 0.8s ease-out;
            text-transform: uppercase;
        }

        .why::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #2368ad;
            margin: 10px auto 0;
            border-radius: 2px;
            animation: scaleX 0.8s ease-out 0.3s backwards;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleX {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }

        .image-column {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: zoomIn 0.8s ease-out 0.2s backwards;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .why-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .content-column {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-card {
            margin-bottom: 20px;
            padding: 10px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border-radius: 12px;
            border-left: 4px solid #667eea;
            transition: all 0.4s ease;
            animation: slideInRight 0.6s ease-out backwards;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .feature-card:nth-child(1) {
            animation-delay: 0.3s;
        }

        .feature-card:nth-child(2) {
            animation-delay: 0.5s;
        }

        .feature-card:nth-child(3) {
            animation-delay: 0.7s;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover {
            transform: translateX(10px);
            border-left-color: #764ba2;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #2368ad;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
            /*animation: spin 2s linear infinite;*/
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .feature-card:hover .feature-icon {
            animation: bounce 0.6s ease-out;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0) rotate(360deg);
            }
            50% {
                transform: translateY(-10px) rotate(360deg);
            }
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            transition: color 0.3s ease;
            margin: 0;
        }

        .feature-card:hover .feature-title {
            color: #2368ad;
        }

        .feature-text {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            animation: fadeIn 0.8s ease-out;
            margin: 0;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .why-choose-container {
                padding: 30px 20px;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .image-column {
                margin-bottom: 30px;
            }

            .feature-card {
                margin-bottom: 20px;
                padding: 20px;
            }

            .feature-title {
                font-size: 1.2rem;
            }

            .feature-text {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .why-choose-container {
                padding: 20px 15px;
                border-radius: 15px;
            }

            .section-title {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }

            .feature-card {
                margin-bottom: 15px;
                padding: 15px;
            }

            .feature-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .feature-header {
                gap: 10px;
            }

            .feature-title {
                font-size: 1.1rem;
            }
        }