 <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f9f9;
        }
        .container {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        h1 {
            color: #d32f2f;
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        .subheadline {
            font-size: 1.3em;
            color: #666;
            text-align: center;
            margin-bottom: 30px;
            font-style: italic;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 15px;
            border-left: 4px solid #ffc107;
            margin: 20px 0;
            font-weight: bold;
        }
        .price-box {
            background-color: #d4edda;
            border: 2px solid #28a745;
            padding: 20px;
            text-align: center;
            margin: 30px 0;
            border-radius: 10px;
        }
        .price {
            font-size: 2.5em;
            color: #28a745;
            font-weight: bold;
        }
        .crossed-out {
            text-decoration: line-through;
            color: #999;
            font-size: 1.2em;
        }
        .bullet-point {
            margin: 10px 0;
            padding-left: 20px;
            position: relative;
        }
        .bullet-point:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }
        .warning {
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            padding: 15px;
            margin: 20px 0;
            border-radius: 5px;
            color: #721c24;
        }
        .testimonial {
            background-color: #e7f3ff;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #007bff;
            font-style: italic;
        }
        .cta-button {
            display: inline-block;
            background-color: #d32f2f;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.2em;
            font-weight: bold;
            text-align: center;
            margin: 20px 0;
        }
        .cta-button:hover {
            background-color: #b71c1c;
        }
        .bonus-section {
            background-color: #fff8e1;
            padding: 20px;
            margin: 30px 0;
            border: 2px dashed #ff9800;
            border-radius: 10px;
        }
        .guarantee {
            background-color: #e8f5e8;
            padding: 20px;
            margin: 30px 0;
            border-radius: 10px;
            text-align: center;
        }
    </style>