
        
        .solutions-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }
        
        .solutions-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .solutions-title {
            font-size: 42px;
            font-weight: 700;
            color: #2B73DA;
            margin-bottom: 20px;
        }
        
        .solutions-subtitle {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .solution-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .solution-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .solution-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(43, 115, 218, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .solution-card:hover .solution-overlay {
            opacity: 1;
        }
        
        .solution-overlay-text {
            color: white;
            font-size: 24px;
            font-weight: 600;
            text-align: center;
        }
        
        .solution-content {
            padding: 30px;
        }
        
        .solution-name {
            font-size: 24px;
            font-weight: 700;
            color: #2B73DA;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .solution-name i {
            margin-right: 12px;
            font-size: 22px;
        }
        
        .solution-description {
            color: #666;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .solution-features {
            list-style-type: none;
            margin-bottom: 25px;
        }
        
        .solution-features li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            font-size: 18px;
        }
        
        .solution-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2B73DA;
            font-weight: bold;
        }
        
        .solution-cta {
            display: inline-block;
            background: #2B73DA;
            color: white;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
            font-size: 18px;
        }
        
        .solution-cta:hover {
            background: #1a56b6;
        }
        
        .solutions-footer {
            text-align: center;
            margin-top: 60px;
            padding: 30px;
            background: #f1f7ff;
            border-radius: 10px;
        }
        
        .solutions-footer-title {
            font-size: 28px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
        }
        
        .solutions-footer-text {
            color: #666;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-size: 18px;
        }
        
        .contact-btn {
            display: inline-block;
            background: linear-gradient(135deg, #2B73DA 0%, #1a56b6 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: transform 0.3s ease;
        }
        
        .contact-btn:hover {
            transform: translateY(-3px);
        }
        
        @media (max-width: 992px) {
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            
            .solutions-title {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .solutions-container {
                padding: 30px 15px;
            }
            
            .solutions-title {
                font-size: 32px;
            }
            
            .solution-content {
                padding: 25px;
            }
        }
        
        @media (max-width: 480px) {
            .solutions-title {
                font-size: 28px;
            }
            
            .solution-name {
                font-size: 22px;
            }
        }
    