        .section5 {
            margin: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #0a0a0a;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .section5::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(36, 36, 36, 0.1) 0%, transparent 0%),
                radial-gradient(circle at 80% 80%, rgba(30, 30, 30, 0.1) 0%, transparent 0%),
                radial-gradient(circle at 40% 60%, rgba(26, 26, 26, 0.05) 0%, transparent 0%);
            pointer-events: none;
        }

        .section5 .container {
            display: flex;
            gap: 32px;
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .section5 .card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px 32px 44px;
            flex: 1;
            text-align: center;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .section5 .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        }

        .section5 .card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05);
        }

        .section5 .logo {
            margin-bottom: 32px;
            position: relative;
        }

        .section5 .logo img {
            width: 96px;
            height: 96px;
            object-fit: contain;
            display: block;
            margin: 0 auto;
            filter: brightness(1.1) saturate(1.2);
            transition: all 0.3s ease;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.05);
            padding: 12px;
        }

        .section5 .card:hover .logo img {
            transform: scale(1.05);
            filter: brightness(1.3) saturate(1.4);
        }

        .section5 .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            flex-grow: 1;
            margin-bottom: 40px;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        .section5 .testimonial-text strong,
        .section5 .testimonial-text b {
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
        }

        .section5 .avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 16px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .section5 .card:hover .avatar {
            border-color: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .section5 .name {
            font-weight: 600;
            font-size: 16px;
            letter-spacing: -0.02em;
            color: rgba(255, 255, 255, 0.95);
            margin: 0 0 6px;
        }

        .section5 .role {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* MOBILE BREAKPOINTS */

        @media (max-width: 768px) {
            .section5 {
                padding: 32px 16px;
                min-height: auto;
            }
            
            .section5 .container {
                flex-direction: column;
                align-items: center;
                justify-content: center; /* Added this */
                gap: 20px;
                max-width: 480px;
                margin: 0 auto; /* Ensure container is centered */
            }

            .section5 .card {
                padding: 28px 20px 32px;
                border-radius: 20px;
                flex: none;
                width: 100%;
                max-width: 400px;
                margin: 0; /* Remove margin auto, let container handle centering */
            }

            .section5 .logo {
                margin-bottom: 24px;
            }

            .section5 .logo img {
                width: 72px;
                height: 72px;
                padding: 10px;
            }

            .section5 .testimonial-text {
                font-size: 15px;
                line-height: 1.6;
                margin-bottom: 28px;
                padding: 0 4px;
            }

            .section5 .avatar {
                width: 56px;
                height: 56px;
                margin-bottom: 12px;
            }

            .section5 .name {
                font-size: 15px;
                margin-bottom: 4px;
            }

            .section5 .role {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .section5 {
                padding: 24px 12px;
            }

            .section5 .container {
                gap: 16px;
                max-width: 360px;
            }

            .section5 .card {
                padding: 24px 18px 28px;
                border-radius: 18px;
                max-width: 340px;
            }

            .section5 .logo {
                margin-bottom: 20px;
            }

            .section5 .logo img {
                width: 64px;
                height: 64px;
                padding: 8px;
                border-radius: 14px;
            }

            .section5 .testimonial-text {
                font-size: 14px;
                line-height: 1.55;
                margin-bottom: 24px;
                padding: 0 2px;
            }

            .section5 .avatar {
                width: 48px;
                height: 48px;
                margin-bottom: 10px;
            }

            .section5 .name {
                font-size: 14px;
                margin-bottom: 3px;
            }

            .section5 .role {
                font-size: 12px;
            }

            /* Reduce hover effects on mobile for better performance */
            .section5 .card:hover {
                transform: translateY(-2px);
            }
        }

        @media (max-width: 460px) {
            .section5 {
                padding: 20px 8px;
            }

            .section5 .container {
                max-width: 320px;
            }

            .section5 .card {
                padding: 20px 16px 24px;
                max-width: 300px;
            }

            .section5 .logo img {
                width: 56px;
                height: 56px;
            }

            .section5 .testimonial-text {
                font-size: 13px;
                margin-bottom: 20px;
            }
        }

        /* Touch-friendly improvements */
        @media (hover: none) and (pointer: coarse) {
            .section5 .card {
                transition: none;
            }
            
            .section5 .card:hover {
                transform: none;
                background: rgba(255, 255, 255, 0.03);
                border-color: rgba(255, 255, 255, 0.08);
                box-shadow: none;
            }

            .section5 .logo img,
            .section5 .avatar {
                transition: none;
            }

            .section5 .card:hover .logo img,
            .section5 .card:hover .avatar {
                transform: none;
                filter: brightness(1.1) saturate(1.2);
            }
        }