 :root {
            --primary: #2c5aa0;
            --primary-light: #3a6bc8;
            --secondary: #f8f9fa;
            --accent: #ff6b35;
            --accent-light: #ff8a65;
            --dark: #2d3748;
            --light: #ffffff;
            --gray: #718096;
            --gray-light: #e2e8f0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', Arial, sans-serif;
        }

        body {
            background: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }
        
        .shape-1 { 
            width: 200px; 
            height: 200px; 
            top: 15%; 
            left: 10%; 
            background: radial-gradient(circle, rgba(44, 90, 160, 0.1) 0%, rgba(44, 90, 160, 0.02) 70%);
            animation-delay: 0s;
        }
        .shape-2 { 
            width: 150px; 
            height: 150px; 
            top: 65%; 
            right: 15%; 
            background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.01) 70%);
            animation-delay: -3s;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, -30px) rotate(5deg); }
            50% { transform: translate(-15px, 20px) rotate(-3deg); }
            75% { transform: translate(25px, 15px) rotate(2deg); }
        }

        /* Header Styles */
        .glass-header {
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(44, 90, 160, 0.1);
            z-index: 1000;
            padding: 12px 0;
            transition: all 0.3s ease;
        }
        
        .header-scrolled {
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(44, 90, 160, 0.85) 0%, rgba(58, 107, 200, 0.85) 100%), url('https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--accent);
            font-size: 1.1rem;
        }

        .cta-button:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Problem Section */
        .problem-section {
            padding: 100px 0;
            background: var(--secondary);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .problem-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .problem-text {
            flex: 1;
        }

        .problem-text h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .problem-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .problem-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .problem-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Solutions Section */
        .solutions-section {
            padding: 100px 0;
            background: white;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .solution-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid var(--gray-light);
        }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .solution-image {
            height: 200px;
            overflow: hidden;
        }

        .solution-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .solution-card:hover .solution-image img {
            transform: scale(1.1);
        }

        .solution-content {
            padding: 25px;
        }

        .solution-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .solution-content h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .solution-content p {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .solution-stats {
            background: var(--primary-light);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
            font-weight: 600;
        }

        /* Comparison Section */
        .comparison-section {
            padding: 100px 0;
            background: var(--secondary);
        }

        .comparison-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: 50px;
        }

        .table-header {
            background: var(--primary);
            color: white;
            padding: 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            font-weight: 600;
        }

        .table-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            padding: 20px;
            border-bottom: 1px solid var(--gray-light);
            align-items: center;
        }

        .table-row:nth-child(even) {
            background: rgba(44, 90, 160, 0.03);
        }

        .table-row:last-child {
            border-bottom: none;
        }

        .rating {
            color: var(--accent);
            font-weight: 600;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
        }

        .cta-button.secondary:hover {
            background: white;
            color: var(--primary);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .problem-content {
                flex-direction: column;
            }
            
            .table-header, .table-row {
                grid-template-columns: 1fr 1fr;
            }
            
            .table-header div:nth-child(3),
            .table-row div:nth-child(3),
            .table-header div:nth-child(4),
            .table-row div:nth-child(4) {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 150px 0 80px;
            }

            .hero-section h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
