<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #ffffff;
            padding: 40px 20px;
            color: #1a1a1a;
            line-height: 1.6;
        }
        
        .container {
            max-width: 650px;
            margin: 0 auto;
        }
        
        /* Benefits Section */
        .benefits-list {
            background: #fffbf0;
            border-left: 4px solid #ffd700;
            padding: 25px 30px;
            margin: 30px 0;
            border-radius: 10px;
        }
        
        .benefits-title {
            font-size: 16px;
            font-weight: 800;
            color: #000000;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 15px;
            color: #2d3748;
        }
        
        .benefit-item:last-child {
            margin-bottom: 0;
        }
        
        .check-icon {
            color: #ffd700;
            font-weight: 900;
            font-size: 18px;
            min-width: 20px;
        }
        
        /* Trust Badges Section */
        .trust-section {
            margin-top: 30px;
        }
        
        .trust-badges {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            padding: 25px 20px;
            background: #f9f9f9;
            border-radius: 10px;
            flex-wrap: wrap;
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #666;
            font-weight: 500;
        }
        
        .trust-icon {
            font-size: 18px;
        }
        
        .footer-note {
            text-align: center;
            margin-top: 20px;
            font-size: 13px;
            color: #999;
        }
        
        @media (max-width: 768px) {
            .benefits-list {
                padding: 20px 20px;
            }
            
            .trust-badges {
                gap: 20px;
                flex-direction: column;
            }
        }
    </style>