
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        body {
            background: #fff5f5;
            color: #2c2c2c;
            line-height: 1.5;
        }
        .red-badge {
            background: #c62828;
            color: white;
            display: inline-block;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .hero {
            background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
            color: white;
            padding: 56px 0 48px;
            border-radius: 0 0 32px 32px;
            margin-bottom: 48px;
        }
        .hero .container {
            text-align: center;
        }
        .hero .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 16px auto 0;
        }
        .cta-btn {
            display: inline-block;
            background: #ffcdd2;
            color: #b71c1c;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 700;
            text-decoration: none;
            margin: 20px 12px 0;
            transition: 0.2s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
        }
        .cta-btn:hover {
            background: white;
            transform: translateY(-2px);
        }
        .cta-btn-primary {
            background: #ff8a80;
            color: #8e0000;
        }
        h2 {
            color: #b71c1c;
            font-size: 1.9rem;
            margin: 40px 0 16px;
            border-left: 5px solid #c62828;
            padding-left: 20px;
        }
        h3 {
            color: #c62828;
            margin: 28px 0 12px;
            font-size: 1.5rem;
        }
        .feature-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin: 32px 0;
        }
        .feature-card {
            background: white;
            border-radius: 24px;
            padding: 24px;
            flex: 1;
            min-width: 220px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            border-top: 4px solid #c62828;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin: 30px 0;
        }
        .comparison-table th, .comparison-table td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid #ffe0e0;
        }
        .comparison-table th {
            background: #c62828;
            color: white;
            font-weight: 600;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .checklist {
            background: #ffebee;
            padding: 28px;
            border-radius: 28px;
            margin: 30px 0;
        }
        .checklist li {
            margin-bottom: 12px;
            list-style-type: none;
            padding-left: 28px;
            position: relative;
        }
        .checklist li::before {
            content: "✓";
            color: #c62828;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .quote {
            background: #fff;
            padding: 24px;
            border-left: 6px solid #c62828;
            font-style: italic;
            margin: 36px 0;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
        }
        .footer-note {
            text-align: center;
            font-size: 0.8rem;
            color: #888;
            padding: 30px 0 20px;
            border-top: 1px solid #f0cfcf;
            margin-top: 30px;
        }
        @media (max-width: 700px) {
            .hero { padding: 40px 0; }
            h2 { font-size: 1.6rem; }
            .feature-grid { flex-direction: column; }
        }
    