        .tagline {
            font-size: 1.4rem;
            color: #1a56db;
            max-width: 800px;
            margin: 0 auto 20px;
            font-weight: 500;
        }
        
        .section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 40px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(26, 86, 219, 0.15);
        }
        
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 5px;
            width: 100%;
            background: linear-gradient(90deg, #1a56db, #00c9b8);
        }
        
        h4 {
            font-size: 1.8rem;
            color: #0e2b5c;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        h4::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: #00c9b8;
        }

        p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #475569;
            line-height: 1.8;
        }
        
        .highlight {
            background: linear-gradient(120deg, #dbeafe 0%, #e0f2fe 100%);
            border-left: 4px solid #1a56db;
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        
        .solution-point ul {
            list-style: none;
            padding: 0;
        }
        
       .solution-point ul li {
            margin-bottom: 15px;
            padding-left: 35px;
            position: relative;
            font-size: 1.1rem;
            color: #475569;
            line-height: 1.7;
        }
        
        .solution-point ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 5px;
            color: #00c9b8;
            background: #e6fffa;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }
        
        .solution-point {
            margin: 30px 0;
            padding-left: 20px;
            border-left: 3px solid #00c9b8;
        }
        
        .solution-point h5 {
            font-size: 1.4rem;
            color: #1a56db;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .solution-point h5 i {
            color: #00c9b8;
        }
        
        .value-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .value-list li::before {
            position: static;
            margin-top: 5px;
        }
        
        .icon-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            margin-right: 10px;
        }
        
        .up-arrow {
            background-color: #dcfce7;
            color: #16a34a;
        }
        
        .down-arrow {
            background-color: #fee2e2;
            color: #dc2626;
        }
        
        .check {
            background-color: #dbeafe;
            color: #2563eb;
        }
        
        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        
        .benefit-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(26, 86, 219, 0.1);
            border-color: #00c9b8;
        }
        
        .benefit-card h5 {
            font-size: 1.2rem;
            color: #0e2b5c;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .benefit-card h5 i {
            color: #1a56db;
        }
        
        footer {
            text-align: center;
            padding: 40px 0 20px;
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 40px;
            border-top: 1px solid #e2e8f0;
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 30px 20px;
            }
            
            h4 {
                font-size: 1.5rem;
            }
            
            .logo-text {
                font-size: 1.8rem;
            }
            
            .tagline {
                font-size: 1.2rem;
            }
            
            .benefit-grid {
                grid-template-columns: 1fr;
            }
        }