Content is user-generated and unverified.


Learn about artifacts
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Rotarex Fire Suppression Webinar - November 19-20</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: #f0f0f0;
            padding: 20px;
        }
        
        .flyer {
            width: 800px;
            height: 1100px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #c41e3a 0%, #2d1b5e 100%);
            padding: 40px 30px;
            text-align: center;
            color: white;
        }
        
        .header .subtitle {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }
        
        .header h1 {
            font-size: 42px;
            font-weight: 700;
            margin: 0 0 12px 0;
            line-height: 1.2;
        }
        
        .header p {
            font-size: 16px;
            color: #e8e8e8;
        }
        
        .meeting-banner {
            background: #c41e3a;
            padding: 30px 20px;
            text-align: center;
            color: white;
        }
        
        .meeting-banner .label {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        
        .meeting-banner h2 {
            font-size: 48px;
            font-weight: 700;
            margin: 0;
        }
        
        .meeting-banner .sublabel {
            font-size: 14px;
            margin-top: 8px;
            color: rgba(255,255,255,0.95);
        }
        
        .content {
            padding: 35px 30px;
        }
        
        .section-title {
            font-size: 20px;
            font-weight: 700;
            color: #2d1b5e;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .product-card {
            border: 2px solid #c41e3a;
            border-radius: 8px;
            padding: 15px;
            background: #f9f9f9;
        }
        
        .product-card .name {
            font-size: 14px;
            font-weight: 700;
            color: #c41e3a;
            margin-bottom: 6px;
        }
        
        .product-card .type {
            font-size: 12px;
            color: #666;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .product-card ul {
            font-size: 11px;
            color: #555;
            list-style: none;
            padding-left: 0;
            line-height: 1.4;
        }
        
        .product-card li:before {
            content: "✓ ";
            color: #c41e3a;
            font-weight: 700;
            margin-right: 4px;
        }
        
        .audience {
            background: #f8f9fa;
            border-left: 4px solid #c41e3a;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        
        .audience h3 {
            font-size: 13px;
            font-weight: 700;
            color: #2d1b5e;
            margin-bottom: 10px;
        }
        
        .audience-items {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            font-size: 12px;
            color: #555;
        }
        
        .audience-items span:before {
            content: "★ ";
            color: #c41e3a;
            margin-right: 4px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #2d1b5e 0%, #c41e3a 100%);
            color: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .cta-section .label {
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-section .cta-text {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .cta-button {
            background: white;
            color: #c41e3a;
            border: none;
            padding: 14px 30px;
            font-size: 14px;
            font-weight: 700;
            border-radius: 6px;
            cursor: pointer;
            display: inline-block;
            margin-bottom: 12px;
        }
        
        .registration-link {
            font-size: 12px;
            color: rgba(255,255,255,0.95);
            word-break: break-all;
            background: rgba(0,0,0,0.2);
            padding: 10px;
            border-radius: 4px;
            margin-top: 10px;
            font-family: 'Courier New', monospace;
        }
        
        .contact-info {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .contact-info p {
            font-size: 12px;
            color: #666;
            margin: 4px 0;
        }
        
        .contact-info .email {
            font-size: 13px;
            font-weight: 600;
            color: #2d1b5e;
        }
        
        .contact-info .phone {
            font-size: 13px;
            font-weight: 600;
            color: #c41e3a;
        }
        
        .footer {
            background: #2d1b5e;
            color: #999;
            padding: 12px;
            text-align: center;
            font-size: 11px;
            border-top: 1px solid #c41e3a;
        }
        
        @media print {
            body {
                background: white;
                padding: 0;
            }
            .flyer {
                box-shadow: none;
                width: 100%;
                height: auto;
            }
        }
    </style>
</head>
<body>
    <div class="flyer">
        <!-- Header -->
        <div class="header">
            <div class="subtitle">Power Four Ltd - Rotarex Firetec Distributor</div>
            <h1>Advanced Fire Suppression Solutions</h1>
            <p>Proven Technology Protecting Thousands of Spaces</p>
        </div>
        
        <!-- Meeting Banner -->
        <div class="meeting-banner">
            <div class="label">Virtual Meeting</div>
            <h2>November 19-20, 2026</h2>
            <div class="sublabel">Two-Day Zoom Conference</div>
        </div>
        
        <!-- Content -->
        <div class="content">
            <div class="section-title">Featured Rotarex Fire Suppression Systems</div>
            
            <!-- Products Grid -->
            <div class="products-grid">
                <div class="product-card">
                    <div class="name">★ TRIPLESTAR</div>
                    <div class="type">Residential Kitchen</div>
                    <ul>
                        <li>Automatic detection</li>
                        <li>Zero user action</li>
                        <li>Easy to install</li>
                        <li>Low maintenance</li>
                    </ul>
                </div>
                
                <div class="product-card">
                    <div class="name">★ FIREDETEC</div>
                    <div class="type">Electrical Cabinet</div>
                    <ul>
                        <li>Mission-critical</li>
                        <li>UL Listed</li>
                        <li>Certified</li>
                        <li>Professional-grade</li>
                    </ul>
                </div>
                
                <div class="product-card">
                    <div class="name">★ TRIPLESTAR</div>
                    <div class="type">Multi-Space Protection</div>
                    <ul>
                        <li>Residential & Small Commercial</li>
                        <li>Automatic suppression</li>
                        <li>Multiple installation options</li>
                        <li>Cost-effective solution</li>
                    </ul>
                </div>
            </div>
            
            <!-- Audience -->
            <div class="audience">
                <h3>Who Should Attend?</h3>
                <div class="audience-items">
                    <span>Architects & Engineers</span>
                    <span>Building Developers</span>
                    <span>Estate Developers</span>
                    <span>Kitchen Professionals</span>
                    <span>Hospitality Managers</span>
                    <span>Safety Officers</span>
                </div>
            </div>
            
            <!-- CTA Section -->
            <div class="cta-section">
                <div class="label">Ready to Learn More?</div>
                <div class="cta-text">Register for Free Today</div>
                <div class="cta-button">REGISTER NOW</div>
                <div class="registration-link">
                    https://docs.google.com/forms/d/e/1FAIpQLSd3MHG_NHbgyEGZrjvcyJf0VPnYrPVLWACJH5MORRDokEsKsw/viewform
                </div>
            </div>
            
            <!-- Contact Info -->
            <div class="contact-info">
                <p><strong>Questions?</strong></p>
                <p class="email">info@powerfourltd.org</p>
                <p>www.powerfourltd.org</p>
            </div>
        </div>
        
        <!-- Footer -->
        <div class="footer">
            Advanced Fire Safety Solutions | Rotarex Firetec Distributor
        </div>
    </div>
</body>
</html>