        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #F8F9FA;
            color: #1A1A1A;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* Animated Gradient Background */
        .gradient-bg {
            background: linear-gradient(135deg, #0066CC 0%, #00D9FF 100%);
            position: relative;
            overflow: hidden;
        }

        .gradient-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,107,53,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveGradient 20s linear infinite;
        }

        @keyframes moveGradient {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Fade-in animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Pulse animation */
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 102, 204, 0.5); }
            50% { box-shadow: 0 0 40px rgba(0, 217, 255, 0.8); }
        }

        .pulse-glow {
            animation: pulse-glow 3s ease-in-out infinite;
        }

        /* Hover lift effect */
        .hover-lift {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* CTA Button */
        .btn-cta {
            background: linear-gradient(135deg, #FF6B35 0%, #FF8555 100%);
            color: white;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
        }

        /* Primary Button */
        .btn-primary {
            background: #0066CC;
            color: white;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #0052A3;
            transform: translateY(-2px);
        }

        /* Service Card */
        .service-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.4s ease;
            border: 1px solid #E0E0E0;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
            border-color: #0066CC;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0066CC 0%, #00D9FF 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
        }

        /* Stats Counter */
        .stat-box {
            text-align: center;
            padding: 30px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: #0066CC;
            font-family: 'Poppins', sans-serif;
        }

        /* Table Styling */
        .custom-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
        }

        .custom-table thead {
            background: linear-gradient(135deg, #0066CC 0%, #00D9FF 100%);
            color: white;
        }

        .custom-table th {
            padding: 18px;
            text-align: left;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.5px;
        }

        .custom-table td {
            padding: 16px 18px;
            border-bottom: 1px solid #F0F0F0;
        }

        .custom-table tbody tr:hover {
            background-color: #F8F9FA;
        }

        .custom-table tbody tr:last-child td {
            border-bottom: none;
        }

        /* Case Study Card */
        .case-study-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .case-study-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
        }

        .case-study-image {
            height: 200px;
            background: linear-gradient(135deg, #0066CC 0%, #00D9FF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: rgba(255, 255, 255, 0.3);
        }

        .case-study-content {
            padding: 25px;
        }

        .case-result {
            background: #F0F7FF;
            border-left: 4px solid #FF6B35;
            padding: 12px 16px;
            margin-top: 15px;
            border-radius: 6px;
        }

        /* FAQ Accordion */
        .faq-item {
            background: white;
            border: 1px solid #E0E0E0;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background: #F8F9FA;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #0F1419;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #F0F7FF;
            color: #0066CC;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #666;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        .faq-toggle {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        /* Footer */
        footer {
            background: #0F1419;
            color: #E0E0E0;
            padding-top: 60px;
            padding-bottom: 20px;
        }

        footer h4 {
            color: white;
            margin-bottom: 15px;
        }

        footer a {
            color: #E0E0E0;
            text-decoration: none;
            transition: color 0.3s;
        }

        footer a:hover {
            color: #00D9FF;
        }

        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav a {
            color: #0F1419;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 14px;
        }

        nav a:hover {
            color: #0066CC;
        }

        /* Badge */
        .badge {
            display: inline-block;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8555 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Rating Stars */
        .stars {
            color: #FFB800;
            font-size: 18px;
            letter-spacing: 3px;
        }

        /* Section divider */
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #0066CC, transparent);
            margin: 60px 0;
        }

        /* Stagger animation */
        .stagger > * {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .stagger > :nth-child(1) { animation-delay: 0.1s; }
        .stagger > :nth-child(2) { animation-delay: 0.2s; }
        .stagger > :nth-child(3) { animation-delay: 0.3s; }
        .stagger > :nth-child(4) { animation-delay: 0.4s; }
        .stagger > :nth-child(5) { animation-delay: 0.5s; }
        .stagger > :nth-child(6) { animation-delay: 0.6s; }
        .stagger > :nth-child(7) { animation-delay: 0.7s; }
        .stagger > :nth-child(8) { animation-delay: 0.8s; }
        .stagger > :nth-child(9) { animation-delay: 0.9s; }
        .stagger > :nth-child(10) { animation-delay: 1s; }

        /* Role Card */
        .role-card {
            background: white;
            border: 1px solid #E0E0E0;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
        }

        .role-title {
            color: #0066CC;
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 18px;
        }

        .role-subtitle {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            font-weight: 500;
        }
    