        :root {
            --primary-blue: #2A5CAA;
            --accent-blue: #3F88D0;
            --light-bg: #f8f9fc;
            --gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
        }

        html {
            scroll-behavior: smooth;
        }

        .dynamic-card {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            margin: 3rem auto;
            border-radius: 15px;
            overflow: hidden;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .dynamic-card.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .icon-box {
            width: 100px;
            height: 100px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: transform 0.3s ease;
        }

        .dynamic-card:hover .icon-box {
            transform: rotate(15deg) scale(1.1);
        }

        .navbar {
            background: #1a1a1a;
            backdrop-filter: blur(5px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-item::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: white;
            transform-origin: bottom right;
            transition: transform 0.3s ease-out;
        }

        .navbar-item:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        .navbar-menu .navbar-item {
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .navbar-menu .navbar-item:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffffff !important;
        }
        .navbar-item.empty::after {
            display: none !important;
        }

        .navbar-item.empty:hover {
            background: none !important;
            color: inherit !important;
        }
        
        .navbar-menu {
            background: #1a1a1a;
        }

        footer svg path {
            fill: #1a1a1a;
        }

        @media (max-width: 768px) {
            .columns.is-vcentered {
                flex-direction: column;
            }
        }.dynamic-card .columns {
            align-items: stretch;
        }

        .dynamic-card .image.is-16by9 {
            padding-bottom: 0 !important;
            height: 100%;
        }

        .dynamic-card .image.is-16by9 img {
            height: 100%;
            object-fit: cover;
        }
        .no-hover::after {
            display: none !important;
        }        
        .main-bg {
            background-color: #f5f5f5;
            min-height: 100vh;
            padding: 4rem 1.5rem;
        }
        
        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 2rem auto;
        }
        
        .divider {
            height: 3px;
            background: #e0e0e0;
            margin: 1.5rem 0;
        }
        
        .image-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }.floating-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: perspective(1000px) rotateY(-5deg) translateZ(30px);
            transition: transform 0.3s ease;
            background: white;
        }

    .floating-card:hover {
        transform: perspective(1000px) rotateY(-3deg) translateZ(40px);
    }

    .card-image {
        border-radius: 15px 15px 0 0;
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .card-caption {
        padding: 1.5rem;
        background: linear-gradient(45deg, #f8f9fa, #ffffff);
        border-top: 3px solid #485fc7;
    }

    .cta-card {
        max-width: 600px;
        margin: 0 auto;
        border: 2px solid #eef2f6;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(50,115,220,0.1);
    }

    .has-hover-effect {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .has-hover-effect:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(50,115,220,0.3);
    }

    .notification.is-primary-soft {
        background-color: rgba(50,115,220,0.08);
        border: 1px solid rgba(50,115,220,0.15);
    }

    .fa-chart-network {
        font-size: 1.4em;
    }         
    .stats-text {
        letter-spacing: 0.5px;
        margin: 2rem 0;
    }
    .cta-button {
        margin-top: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        font-weight: 600;
        transition: transform 0.2s ease;
    }
    .cta-button:hover {
        transform: translateY(-2px);
    }
    .main-bg {
    background: linear-gradient(
        135deg,
        rgba(42,92,170,0.03) 0%,
        rgba(63,136,208,0.03) 50%,
        rgba(248,249,252,0.8) 100%
    ),
    radial-gradient(
        circle at 10% 20%,
        rgba(63,136,208,0.05) 0%,
        transparent 40%
    ),
    radial-gradient(
        circle at 90% 80%,
        rgba(42,92,170,0.05) 0%,
        transparent 40%
    ),
    linear-gradient(
        to bottom right,
        #ffffff 0%,
        #f8f9fc 100%
    );
    min-height: 90vh;
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}
    
    .main-bg .columns.is-vcentered {
        margin-top: 8rem !important;
    }

    .feature-card {
        background: white;
        border-radius: 12px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin: 2rem auto;
        position: relative;
        z-index: 2;
    }
    
    .image-container {
        position: relative;
        z-index: 1;
        transform: translateY(120px);
    }