   :root {
            --adv-blue: #1e40af;
            --adv-indigo: #4f46e5;
            --adv-purple: #7c3aed;
            --adv-cyan: #06b6d4;
            --adv-teal: #14b8a6;
            --adv-green: #10b981;
            --adv-orange: #f97316;
        }

        /* Advantages Section Background */
        #other-advantages {
            background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 50%, #99f6e4 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        #other-advantages::before {
            content: '';
            position: absolute;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent);
            border-radius: 50%;
            top: -450px;
            left: 50%;
            transform: translateX(-50%);
            animation: float-advantages 28s ease-in-out infinite;
        }

        #other-advantages::after {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(20, 184, 166, 0.1), transparent);
            border-radius: 50%;
            bottom: -350px;
            right: -350px;
            animation: float-advantages 24s ease-in-out infinite reverse;
        }

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

        /* Section Title */
        .advantages-title {
            background: linear-gradient(135deg, var(--adv-teal) 0%, var(--adv-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shine-advantages 3s ease-in-out infinite;
        }

        @keyframes shine-advantages {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.35); }
        }

        /* Title Underline */
        .advantages-underline {
            width: 180px;
            height: 5px;
            background: linear-gradient(90deg, var(--adv-teal), var(--adv-green), var(--adv-teal));
            position: relative;
            overflow: hidden;
        }

        .advantages-underline::before {
            content: '';
            position: absolute;
            width: 50%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            animation: slide-advantages 2.5s ease-in-out infinite;
        }

        @keyframes slide-advantages {
            0% { left: -50%; }
            100% { left: 150%; }
        }

        /* Intro Card */
        .intro-card {
            background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
            border: 3px solid var(--adv-green);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .intro-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15), transparent);
            transition: left 0.8s;
        }

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

        .intro-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(16, 185, 129, 0.3) !important;
        }

        /* Advantage Card */
        .advantage-card {
            background: white;
            border: 2px solid transparent;
            border-left: 5px solid var(--adv-teal);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.08), transparent);
            transition: left 0.7s;
        }

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

        .advantage-card:hover {
            transform: translateX(15px) scale(1.02);
            box-shadow: 0 15px 40px rgba(20, 184, 166, 0.25) !important;
            border-color: var(--adv-teal);
            border-left-color: var(--adv-green);
        }

        /* Number Badge */
        .number-badge {
            position: absolute;
            top: -15px;
            left: -15px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--adv-teal), var(--adv-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            color: white;
            box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
            animation: pulse-number 2.5s ease-in-out infinite;
            z-index: 10;
        }

        @keyframes pulse-number {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Icon Container */
        .icon-container {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--adv-teal), var(--adv-green));
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            font-size: 2rem;
            flex-shrink: 0;
            animation: float-icon 6s ease-in-out infinite;
            box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
        }

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

        /* Highlight Badge */
        .highlight-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--adv-orange), #ea580c);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
            animation: pulse-highlight 2s ease-in-out infinite;
        }

        @keyframes pulse-highlight {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Application Card */
        .application-card {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 2px solid var(--adv-orange);
            position: relative;
        }

        .application-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 6px;
            background: linear-gradient(to bottom, var(--adv-orange), #ea580c);
            animation: shimmer-application 2s ease-in-out infinite;
        }

        @keyframes shimmer-application {
            0%, 100% { box-shadow: 0 0 20px var(--adv-orange); }
            50% { box-shadow: 0 0 40px #ea580c; }
        }

        /* Application Tag */
        .application-tag {
            display: inline-block;
            background: white;
            color: var(--adv-orange);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin: 5px;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
            transition: all 0.3s ease;
        }

        .application-tag:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
        }

        /* Decorative Elements */
        .decoration-shape {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(20, 184, 166, 0.08), transparent);
            animation: float-decoration 22s ease-in-out infinite;
        }

        @keyframes float-decoration {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(40px, -40px) rotate(120deg); }
            66% { transform: translate(-40px, 40px) rotate(240deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .number-badge {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                top: -12px;
                left: -12px;
            }

            .icon-container {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }

            .advantage-card:hover {
                transform: translateX(8px) scale(1.01);
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
 
