
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pain-points-section {
            background: white;
            padding: 50px 40px;
        }
        
        .pain-points-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #2B73DA;
            margin-bottom: 40px;
            position: relative;
        }
        
        .pain-points-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #2B73DA;
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .pain-points-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .pain-point {
            display: flex;
            align-items: flex-start;
            padding: 25px;
            background: #f8fafc;
            border-radius: 10px;
            border-left: 4px solid #2B73DA;
            transition: all 0.3s ease;
        }
        
        .pain-point:hover {
            background: #edf4ff;
            transform: translateX(5px);
        }
        
        .pain-point-icon {
            font-size: 24px;
            color: #2B73DA;
            margin-right: 20px;
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(43, 115, 218, 0.1);
            border-radius: 50%;
        }
        
        .pain-point-text {
            flex: 1;
        }
        
        .pain-point-title {
            font-weight: 600;
            margin-bottom: 8px;
            color: #2d3748;
            font-size: 20px;
        }
        
        .pain-point p {
            font-size: 18px;
        }
        
        .our-promise {
            background: linear-gradient(135deg, #2B73DA 0%, #1a56b6 100%);
            color: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .our-promise:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: rgba(255, 255, 255, 0.05);
            transform: rotate(30deg);
        }
        
        .promise-text {
            font-size: 22px;
            font-weight: 600;
            line-height: 1.4;
            position: relative;
            z-index: 2;
        }
        
        .highlight2 {
            color: #ffd166;
            font-weight: 700;
        }
        
        @media (max-width: 768px) {
            .pain-points-section {
                padding: 30px 20px;
            }
            
            .pain-points-title {
                font-size: 36px;
            }
            
            .pain-points-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .pain-point {
                padding: 20px;
            }
            
            .our-promise {
                padding: 30px 20px;
            }
            
            .promise-text {
                font-size: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .pain-point {
                flex-direction: column;
                text-align: center;
            }
            
            .pain-point-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .pain-points-title {
                font-size: 28px;
            }
            
            .promise-text {
                font-size: 18px;
            }
        }
    