
        :root {
            --primary-color: #002f6c;
            --secondary-color: #0047ab;
            --accent-color: #00a8e8;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --bg-light: #f8f9fa;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --border-color: #e0e0e0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        /* Loading Screen */
        #loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }
        
        .loader {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(255,255,255,0.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        .loading-text {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 20px;
            letter-spacing: 2px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Scroll to Top Button */
        #scrollToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 47, 108, 0.4);
        }
        
        #scrollToTop.show {
            opacity: 1;
            visibility: visible;
        }
        
        #scrollToTop:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 47, 108, 0.6);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #fff;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .hero-section .subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Buttons */
        .btn-custom {
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary-custom {
            background: #fff;
            color: var(--primary-color);
        }
        
        .btn-primary-custom:hover {
            background: var(--bg-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .btn-outline-custom {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
        }
        
        .btn-outline-custom:hover {
            background: #fff;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Section Styles */
        .content-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.3;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }
        
        .bg-light-custom {
            background-color: var(--bg-light);
        }
        
        /* Feature Cards */
        .feature-card {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 4px solid var(--primary-color);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #fff;
            margin-bottom: 25px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .feature-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin: 20px 0 15px;
        }
        
        .feature-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .feature-card ul {
            list-style: none;
            padding-left: 0;
            margin-top: 15px;
        }
        
        .feature-card ul li {
            position: relative;
            margin-bottom: 10px;
            color: var(--text-light);
        }
    
        /* Stats Section */
        .stats-section {
            background: var(--primary-color);
            color: #fff;
            padding: 60px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
        }
        
        /* Content Block */
        .content-block {
            margin-bottom: 40px;
        }
        .content-bloc {
            margin-bottom: 40px;
        }
        
        .content-block h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .content-bloc h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .content-block h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin: 30px 0 15px;
        }
        .content-bloc h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin: 30px 0 15px;
        }
        
        .content-block p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 15px;
        }
        .content-bloc p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .content-block ul {
            list-style: none;
            padding-left: 0;
            margin: 20px 0;
        }
        .content-bloc ul {
            list-style: none;
            padding-left: 0;
            margin: 20px 0;
        }
        
        .content-block ul li {
            position: relative;
            margin-bottom: 12px;
            color: white;
            line-height: 1.6;
        }
        .content-bloc ul li {
            position: relative;
            margin-bottom: 12px;
            color: white;
            line-height: 1.6;
        }
        .content-bloc ul li {
            position: relative;
            margin-bottom: 12px;
            color: #002f6c !important;
            line-height: 1.6;
        }
        
     
        
        /* Use Case Cards */
        .use-case-card {
            background: #fff;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border-left: 5px solid #0047ab;
        }
        
        .use-case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .use-case-number {
            width: 45px;
            height: 45px;
            background:#0047ab;
            color: #fff;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .use-case-card h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #fff;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Advantage Cards */
        .advantage-card {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .advantage-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
        }
        
        .advantage-card p {
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
        }
        
        /* Price Box */
        .price-box {
            background: #0047ab;
            color: #fff;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
        }
        
        .price-box h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .price-value {
            font-size: 3.5rem;
            font-weight: 800;
            margin: 20px 0;
        }
        
        .price-value span {
            font-size: 1.5rem;
            font-weight: 500;
        }
        
        .price-box ul {
            list-style: none;
            padding: 0;
            margin: 25px 0;
            text-align: left;
        }
        
        .price-box ul li {
            padding: 10px 0;
            position: relative;
        }
        
        
        /* Alert Box */
        .alert-custom {
            background: #002f6c;
            border: none;
            color: #fff;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
        }
        
        .alert-custom h4 {
            color: #fff;
            margin-bottom: 15px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section .subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0 50px;
            }
            
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .content-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .btn-custom {
                padding: 14px 30px;
                font-size: 1rem;
            }
            
            #scrollToTop {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
            }
            
            .price-value {
                font-size: 2.5rem;
            }
        }
    