:root {
            --color1: #dcecf6;
            --color2: #fcf0f5;
            --color3: #0e6a49;
            --color4: #0a981c;
            --color5: #c3b738;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        
        .diagonal-split {
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }
        
        .wave-bottom {
            position: relative;
        }
        
        .wave-bottom::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 80px;
            background: var(--color2);
            clip-path: ellipse(100% 100% at 50% 100%);
        }
        
        .floating-element {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .text-pattern {
            position: relative;
            overflow: hidden;
        }
        
        .text-pattern::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            100% { left: 100%; }
        }
        
        .geometric-bg {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            opacity: 0.4;
            z-index: -1;
        }
        
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transform: translateX(600px);
            transition: transform 0.3s ease;
            z-index: 1000;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .img-placeholder {
            background: var(--color1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color3);
            font-weight: 600;
        }
        
        .zigzag-divider {
            height: 40px;
            background: var(--color2);
            clip-path: polygon(0 0, 5% 100%, 10% 0, 15% 100%, 20% 0, 25% 100%, 30% 0, 35% 100%, 40% 0, 45% 100%, 50% 0, 55% 100%, 60% 0, 65% 100%, 70% 0, 75% 100%, 80% 0, 85% 100%, 90% 0, 95% 100%, 100% 0, 100% 100%, 0 100%);
        }
        
        .curved-section {
            border-radius: 0 0 50% 50% / 0 0 4% 4%;
        }
