
        /* Skyblue & Yellow Theme */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            background: #f0f9ff;
            color: #1e293b;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        /* Skyblue & Yellow Color Palette */
        :root {
            --skyblue-light: #e0f2fe;
            --skyblue: #38bdf8;
            --skyblue-dark: #0284c7;
            --yellow-light: #fef9c3;
            --yellow: #facc15;
            --yellow-dark: #eab308;
            --white: #ffffff;
            --text-dark: #0f172a;
            --text-light: #334155;
            --gradient-sky: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
            --gradient-yellow: linear-gradient(135deg, #facc15 0%, #eab308 100%);
            --gradient-mix: linear-gradient(135deg, #38bdf8 0%, #facc15 100%);
        }

        /* Glassmorphism with Skyblue */
        .glass-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(56, 189, 248, 0.2);
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        
        .glass-card:hover {
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(-5px);
            border-color: var(--yellow);
            box-shadow: 0 20px 40px rgba(250, 204, 21, 0.2);
        }

        /* Modern Navbar */
        .navbar-modern {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--skyblue);
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15);
        }
        
        .navbar-modern .navbar-nav .nav-link {
            color: var(--text-dark);
            font-weight: 600;
            padding: 0.6rem 1.2rem !important;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .navbar-modern .navbar-nav .nav-link:hover,
        .navbar-modern .navbar-nav .nav-link.active {
            background: var(--gradient-yellow);
            color: var(--text-dark);
            box-shadow: 0 4px 12px rgba(250, 204, 21, 0.4);
        }

        /* Modern Buttons */
        .btn-skyblue {
            background: var(--gradient-sky);
            color: white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
        }
        
        .btn-skyblue:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(56, 189, 248, 0.6);
            color: white;
        }
        
        .btn-yellow {
            background: var(--gradient-yellow);
            color: var(--text-dark);
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
        }
        
        .btn-yellow:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(250, 204, 21, 0.6);
            color: var(--text-dark);
        }

        /* Hero Section */
        .hero-modern {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            text-align: left;
            color: var(--text-dark);
            overflow: hidden;
            padding: 0 5%;
            background: linear-gradient(135deg, #e0f2fe 0%, #fef9c3 100%);
        }
        
        .hero-image-container {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            z-index: 0;
            animation: slideIn 1s ease-out;
        }
        
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-bottom-left-radius: 80px;
            box-shadow: -20px 20px 40px rgba(56, 189, 248, 0.3);
        }
        
        .hero-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(240, 249, 255, 0.9) 0%, rgba(56, 189, 248, 0.3) 100%);
            border-bottom-left-radius: 80px;
            pointer-events: none;
        }
        
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 50%;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 60px;
            border: 2px solid var(--skyblue);
            box-shadow: 20px 20px 40px rgba(56, 189, 248, 0.2);
            animation: fadeInUp 1s ease-out;
        }
        
        @keyframes fadeInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .hero-title {
            font-size: calc(2rem + 3vw);
            font-weight: 800;
            color: var(--skyblue-dark);
            margin-bottom: 1rem;
        }

        /* Stats Cards */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
            padding: 3rem 0;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .stat-item-modern {
            background: white;
            border-radius: 20px;
            padding: 1.5rem 1rem;
            text-align: center;
            border: 2px solid var(--skyblue);
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(56, 189, 248, 0.15);
        }
        
        .stat-item-modern:hover {
            border-color: var(--yellow);
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(250, 204, 21, 0.25);
        }
        
        .stat-item-modern h5 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--skyblue-dark);
            margin-bottom: 0.3rem;
        }
        
        .stat-item-modern p {
            color: var(--text-light);
            margin: 0;
            font-weight: 500;
        }

        /* Feature Cards */
        .feature-card-modern {
            background: white;
            border-radius: 30px;
            padding: 2rem;
            text-align: center;
            border: 2px solid var(--skyblue);
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 10px 30px rgba(56, 189, 248, 0.1);
        }
        
        .feature-card-modern:hover {
            transform: translateY(-10px);
            border-color: var(--yellow);
            box-shadow: 0 20px 40px rgba(250, 204, 21, 0.2);
        }
        
        .feature-icon-modern {
            width: 120px;
            height: 120px;
            margin: 0 auto 1.5rem;
            background: var(--gradient-sky);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
        }
        
        .feature-icon-modern i {
            font-size: 3rem;
            color: white;
        }

        /* Price Cards */
        .price-card-modern {
            background: white;
            border-radius: 30px;
            padding: 2rem;
            border: 2px solid var(--skyblue);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(56, 189, 248, 0.1);
        }
        
        .price-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-yellow);
        }
        
        .price-card-modern:hover {
            transform: translateY(-10px);
            border-color: var(--yellow);
            box-shadow: 0 30px 50px rgba(250, 204, 21, 0.25);
        }
        
        .price-modern {
            font-size: 3rem;
            font-weight: 800;
            color: var(--skyblue-dark);
        }
        
        .price-card-modern ul {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
        
        .price-card-modern li {
            margin-bottom: 0.8rem;
            color: var(--text-light);
        }
        
        .price-card-modern li i {
            color: var(--yellow-dark);
            margin-right: 0.5rem;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--skyblue-dark);
            display: inline-block;
            position: relative;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-yellow);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-top: 1rem;
        }

        /* Support Box */
        .support-box-modern {
            background: white;
            border-radius: 40px;
            padding: 3rem;
            border: 2px solid var(--skyblue);
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15);
        }
        
        .whatsapp-badge-modern {
            background: var(--skyblue-light);
            color: var(--skyblue-dark);
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 2px solid var(--skyblue);
            font-weight: 600;
        }

        /* QR Code */
        .qr-code-modern {
            width: 250px;
            height: 250px;
            background: var(--gradient-sky);
            margin: 2rem auto;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(56, 189, 248, 0.4);
        }
        
        .qr-code-modern i {
            font-size: 8rem;
            color: white;
        }

        /* Footer */
        .footer-modern {
            background: linear-gradient(135deg, #0284c7 0%, #eab308 100%);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-modern a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-bottom: 0.5rem;
        }
        
        .footer-modern a:hover {
            color: var(--yellow-light);
            transform: translateX(5px);
        }

        /* Floating Buttons */
        .whatsapp-float-modern {
            position: fixed;
            right: 24px;
            bottom: 100px;
            z-index: 99;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .whatsapp-float-modern:hover {
            transform: scale(1.1) rotate(5deg);
            color: white;
        }
        
        .back-to-top-modern {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--gradient-yellow);
            color: var(--text-dark);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(250, 204, 21, 0.5);
            transition: all 0.3s ease;
            z-index: 99;
        }
        
        .back-to-top-modern:hover {
            transform: translateY(-5px);
            color: var(--text-dark);
        }

        /* Image Cards */
        .image-card {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(56, 189, 248, 0.2);
            transition: all 0.3s ease;
            border: 3px solid var(--skyblue);
        }
        
        .image-card:hover {
            transform: scale(1.02);
            border-color: var(--yellow);
            box-shadow: 0 30px 60px rgba(250, 204, 21, 0.3);
        }
        
        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Accordion */
        .accordion-modern .accordion-item {
            background: white;
            border: 2px solid var(--skyblue);
            border-radius: 15px !important;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        
        .accordion-modern .accordion-button {
            background: white;
            color: var(--skyblue-dark);
            font-weight: 600;
            padding: 1.2rem;
        }
        
        .accordion-modern .accordion-button:not(.collapsed) {
            background: var(--gradient-sky);
            color: white;
        }
        
        .accordion-modern .accordion-button:focus {
            box-shadow: none;
            border-color: var(--yellow);
        }
        
        .accordion-modern .accordion-body {
            color: var(--text-light);
            padding: 1.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-modern {
                flex-direction: column;
                padding: 2rem;
                text-align: center;
            }
            
            .hero-content {
                max-width: 100%;
                margin-bottom: 2rem;
            }
            
            .hero-image-container {
                position: relative;
                width: 100%;
                height: 300px;
            }
            
            .hero-image {
                border-bottom-left-radius: 0;
                border-radius: 40px;
            }
            
            .hero-image-overlay {
                border-bottom-left-radius: 0;
                border-radius: 40px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            
            .stat-item-modern {
                padding: 1rem 0.5rem;
            }
            
            .stat-item-modern h5 {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }

        /* Tooltip */
        .tooltip-luka {
            position: relative;
            cursor: help;
            border-bottom: 2px dotted var(--yellow);
        }
        
        .tooltip-luka:hover:after {
            content: attr(data-tooltip);
            position: absolute;
            background: var(--skyblue-dark);
            color: white;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            bottom: 130%;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            z-index: 1000;
            box-shadow: 0 8px 16px rgba(56, 189, 248, 0.3);
        }
