
        * {
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            max-width: 100%;
            margin: 0 auto;
            padding: 25px 30px;
            line-height: 1.7;
            color: #333;
            background-color: #f9f9f9;
        }
        h1, h2 {
            color: #1a53b0;
            border-bottom: 3px solid #e0f3ff;
            padding-bottom: 10px;
            margin-top: 40px;
        }
        h1 {
            font-size: 1.8em;
            text-align: center;
            margin-bottom: 30px;
        }
        h2 {
            font-size: 1.4em;
        }
        .highlight {
            color: #1a53b0;
            font-weight: 600;
        }
        .insight {
            background: #f0f8ff;
            padding: 20px 25px;
            border-left: 4px solid #1a53b0;
            margin: 25px 0;
            font-style: italic;
            color: #444;
        }
        .performance-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .performance-table th, 
        .performance-table td {
            padding: 18px 20px;
            border-bottom: 1px solid #e5f0ff;
        }
        .performance-table th {
            background-color: #1a53b0;
            color: white;
            font-weight: 500;
            text-align: left;
        }
        .benefits-list {
            list-style: none;
            padding-left: 25px;
        }
        .benefits-list li {
            margin: 12px 0;
            position: relative;
        }
        .benefits-list li::before {
            content: "";
            width: 8px;
            height: 8px;
            background-color: #1a53b0;
            border-radius: 50%;
            display: inline-block;
            position: absolute;
            left: -20px;
            top: 8px;
        }
        .cta-section {
            background: #1a53b0;
            color: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            margin: 50px 0;
        }
        .cta-btn {
            display: inline-block;
            background: white;
            color: #1a53b0;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1em;
            transition: transform 0.2s ease;
        }
        .cta-btn:hover {
            transform: scale(1.03);
        }
    