
        :root {
            --navy: #0d2f5ed6;
            --navy-dark: #051b38f2;
            --navy-light: #1a4b8c;
            --teal: #20c997;
            --teal-dark: #149672;
            --cyan: #464fb7;
            --white: #ffffff;
            --light: #f8f9fa;
            --gray: #6c757d;
            --dark-text: #212529;
            --light-text: #ffffff;
            --transition: all 0.3s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            line-height: 1.6;
            background: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            transition: var(--transition);
        }
        
        /* Hero Section */
        .industry-hero {
            padding: 150px 0 100px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            position: relative;
            overflow: hidden;
            margin-top: 20px;
        }
        
        .industry-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1911&q=80') center/cover no-repeat;
            opacity: 0.2;
        }
        
        .industry-hero-content {
            position: relative;
            z-index: 2;
        }
        
        .industry-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        
        .industry-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2rem;
        }
        
        /* Solutions Section */
        .solutions-section {
            padding: 100px 0;
            background: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            color: var(--navy);
            font-size: 2.5rem;
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .solution-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 30px;
        }
        
        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .solution-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .solution-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .solution-card-body {
            padding: 30px;
            text-align: center;
        }
        
        .solution-card-body h3 {
            color: var(--navy);
            font-size: 1.5rem;
        }
        
        .solution-card-body p {
            color: var(--gray);
        }
        
        /* Challenges Section */
        .challenges-section {
            padding: 100px 0;
            background: var(--light);
        }
        
        .challenge-item {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: var(--transition);
        }
        
        .challenge-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .challenge-icon {
            width: 60px;
            height: 60px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .challenge-icon i {
            font-size: 1.5rem;
            color: var(--teal);
        }
        
        .challenge-item h4 {
            color: var(--navy);
            font-size: 1.3rem;
        }
        
        .challenge-item p {
            color: var(--gray);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .button1 {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            font-size: 1rem;
        }
        
        .button1:hover {
            background: linear-gradient(90deg, var(--teal-dark) 0%, var(--cyan) 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        
        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .industry-hero, .solutions-section, .challenges-section, .cta-section {
                padding: 80px 0;
            }
            
            .industry-hero h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .industry-hero, .solutions-section, .challenges-section, .cta-section {
                padding: 60px 0;
            }
            
            .industry-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 575.98px) {
            .industry-hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
    