        .modern-explanation-section {
            padding: 6rem 0;
            background: var(--bg-secondary);
            color: var(--text-primary);
        }
        
        .explanation-content {
            position: relative;
        }
        
        .explanation-description {
            color: var(--text-primary);
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .service-grid {
            display: grid;
            gap: 1.5rem;
        }
        
        .service-item {
            background: var(--bg-card);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px var(--shadow-light);
        }
        
        .service-item:hover {
            border-color: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow-medium);
        }
        
        .service-icon {
            font-size: 2.2rem;
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }
        
        .service-title {
            font-family: 'Fredoka One', sans-serif;
            color: var(--text-primary);
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }
        
        .service-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin: 0;
        }
        
        .explanation-visual {
            position: relative;
            height: auto;
            min-height: 400px;
        }
        
        .benefits-showcase {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2rem;
        }
        
        .benefit-card {
            background: var(--bg-card);
            border: 2px solid var(--border-color);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 8px 30px var(--shadow-light);
            transition: all 0.4s ease;
            animation: slideInRight 0.6s ease forwards;
            opacity: 0;
            transform: translateX(30px);
        }
        
        .main-benefit {
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
            color: white;
            padding: 2rem;
            text-align: center;
            order: 2;
        }
        
        .secondary-benefit:nth-child(2) {
            align-self: flex-end;
            max-width: 250px;
            order: 1;
        }
        
        .secondary-benefit:nth-child(3) {
            align-self: flex-start;
            max-width: 250px;
            order: 3;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px var(--shadow-heavy);
        }
        
        .secondary-benefit:hover {
            transform: translateY(-8px) scale(1.05);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .benefit-title {
            font-family: 'Fredoka One', sans-serif;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        
        .main-benefit .benefit-title {
            color: white;
            font-size: 1.5rem;
        }
        
        .main-benefit .benefit-desc {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .secondary-benefit .benefit-title {
            color: var(--text-primary);
            font-size: 1.1rem;
        }
        
        .secondary-benefit .benefit-desc {
            color: var(--text-secondary);
        }
        
        .benefit-desc {
            margin: 0;
            font-size: 0.95rem;
        }
        
        .benefit-accent {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
        }
        
        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @media (max-width: 768px) {
            .explanation-visual {
                height: auto;
                margin-top: 2rem;
            }
            
            .benefits-showcase {
                position: static;
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
            
            .benefit-card {
                position: static !important;
                width: 100% !important;
                height: auto !important;
                transform: none !important;
                animation: none !important;
                opacity: 1 !important;
            }
            
            .main-benefit {
                order: 1;
            }
            
            .service-grid {
                gap: 1rem;
            }
            
            .service-item {
                padding: 1rem;
            }
            
            .service-icon {
                width: 50px;
                height: 50px;
                font-size: 1.8rem;
            }
        }
        
        .motto-box {
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
            color: white;
            padding: 1.5rem;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
        }
        
        .motto-icon {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .motto-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 0.3rem;
            font-family: 'Fredoka One', sans-serif;
        }
        
        .motto-text {
            font-size: 1rem;
            font-style: italic;
            margin: 0;
            opacity: 0.95;
        }
        
        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @media (max-width: 768px) {
            .explanation-visual {
                height: auto;
                margin-top: 2rem;
            }
            
            .process-cards {
                gap: 1rem;
            }
            
            .process-card {
                flex-direction: column;
                text-align: center;
                padding: 1rem;
            }
            
            .motto-box {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem 1rem;
            }
        }