
        :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 {
            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); }
        }
        
        #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 {
            padding-left: 30px;
            position: relative;
            margin-bottom: 10px;
            color: var(--text-light);
        }
        
        .feature-card ul li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-size: 14px;
        }
        
        /* 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-block 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-block 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-block ul li {
            position: relative;
            margin-bottom: 12px;
            color: var(--text-light);
            line-height: 1.6;
        }
        
   
        
        /* Dashboard Cards */
        .dashboard-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 var(--accent-color);
        }
        
        .dashboard-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .dashboard-icon {
            width: 60px;
            height: 60px;
            background:#002f6c;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #fff;
            margin-bottom: 20px;
        }
        
        .dashboard-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;
        }
        
        /* Pricing Cards */
        .pricing-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%;
            position: relative;
            border: 2px solid var(--border-color);
        }
        
        .pricing-card.featured {
            border: 3px solid #002f6c;
            transform: scale(1.05);
        }
        
        .pricing-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .pricing-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background:#002f6c;
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .pricing-header h4 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .pricing-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin: 20px 0;
        }
        
        .pricing-price span {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-light);
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .pricing-features li {
            padding: 12px 0;
            position: relative;
            color: var(--text-light);
            border-bottom: 1px solid var(--border-color);
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
      
        
        /* Use Case Box */
        .use-case-box {
            background: #002f6c;
            color: #fff;
            padding: 35px;
            border-radius: 15px;
            margin: 30px 0;
        }
        
        .use-case-box h4 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .use-case-box p {
            color: rgba(255,255,255,0.95);
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .use-case-box strong {
            color: #fff;
            display: block;
            margin-top: 20px;
            font-size: 1.1rem;
        }
        
        /* Report Type Cards */
        .report-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%;
        }
        
        .report-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .report-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
        }
        
        .report-card p {
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
        }
        
        /* 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;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
        }
        
        @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;
            }
            
            .pricing-price {
                font-size: 2.5rem;
            }
        }
    