        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --dark-color: #111827;
            --text-color: #374151;
            --light-bg: #f9fafb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        body {
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .case-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
                   padding: 100px 0 150px;
            text-align: center;
        }
        
        .case-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
           margin-top: 75px;    
            
            
        }
        
        .case-header .meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .meta-item {
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
        }
        
        /* Case Content */
        .case-content {
            padding: 60px 0;
        }
        
        .case-section {
            margin-bottom: 60px;
        }
        
        .case-section h2 {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .case-section h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .case-section p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        
        .case-image {
            margin: 40px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .case-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Challenge/Solution Blocks */
        .highlight-block {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .highlight-block h3 {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        /* Results */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .result-item {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border-top: 4px solid var(--primary-color);
        }
        
        .result-item h3 {
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        /* CTA */
        .case-cta {
            text-align: center;
            padding: 60px 0;
            background: var(--light-bg);
            margin-top: 60px;
        }
        
        .case-cta h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .case-header {
                padding: 80px 0 40px;
            }
            
            .case-header h1 {
                font-size: 2rem;
            }
        }
        
        
          /* CTA */
        .case-cta {
            text-align: center;
            padding: 60px 0;
            background: var(--light-bg);
            margin-top: 60px;
            border-radius: 8px;
        }
        
        .case-cta h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .case-header {
                padding: 80px 0 40px;
            }
            
            .case-header h1 {
                font-size: 2rem;
            }
            
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        
         /* CTA Section Styles */
.case-cta {
    text-align: center;
    padding: 60px 20px;
    margin: 80px auto 40px; /* Changed to auto for horizontal centering */
     background: var(--light-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    max-width: 800px; /* Added max-width to prevent overly wide section */
    width: 90%; /* Ensures it doesn't touch edges on small screens */
    display: flex; /* Added flexbox */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
}

.case-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    width: 100%; /* Ensure full width for proper text centering */
}

.case-cta p {
    font-size: 1.125rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
    width: 100%; /* Ensure full width for proper text centering */
}


.case-cta .btn {
    display: inline-block;
    background-color: #4f46e5;
    color: white;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3), 0 2px 4px -1px rgba(79, 70, 229, 0.2);
    margin: 0 auto; /* Ensures button is centered */
}

.case-cta .btn:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3), 0 4px 6px -2px rgba(79, 70, 229, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .case-cta {
        padding: 40px 15px;
        margin: 60px auto 30px; /* Maintain centered margin */
        width: 95%; /* Slightly more edge space on mobile */
    }
    
    .case-cta h2 {
        font-size: 1.5rem;
    }
    
    .case-cta p {
        font-size: 1rem;
    }
}