<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Website Temporarily Offline</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            padding: 50px;
            max-width: 600px;
            width: 100%;
            text-align: center;
        }
        
        .icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: #f3f4f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .icon svg {
            width: 40px;
            height: 40px;
            fill: #6b7280;
        }
        
        h1 {
            color: #1f2937;
            font-size: 32px;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .subtitle {
            color: #6b7280;
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .notice-box {
            background: #fef3c7;
            border: 1px solid #fcd34d;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .notice-box p {
            color: #92400e;
            font-size: 16px;
            line-height: 1.5;
        }
        
        .contact-section {
            background: #f9fafb;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
        }
        
        .contact-title {
            color: #374151;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .phone-number {
            font-size: 28px;
            color: #667eea;
            font-weight: 700;
            margin-bottom: 10px;
            text-decoration: none;
            display: inline-block;
            transition: color 0.3s ease;
        }
        
        .phone-number:hover {
            color: #764ba2;
        }
        
        .hours {
            color: #6b7280;
            font-size: 14px;
            margin-top: 10px;
        }
        
        .account-info {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #e5e7eb;
        }
        
        .account-info p {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .account-info strong {
            color: #374151;
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 30px 20px;
            }
            
            h1 {
                font-size: 26px;
            }
            
            .subtitle {
                font-size: 16px;
            }
            
            .phone-number {
                font-size: 24px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="icon">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
                <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" opacity="0.3"/>
                <path d="M10 17l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/>
            </svg>
        </div>
        
        <h1>Website Temporarily Offline</h1>
        <p class="subtitle">This website is currently unavailable due to account status</p>
        
        <div class="notice-box">
            <p><strong>Important Notice:</strong> This website is temporarily offline. Service will be restored once the account is brought current.</p>
        </div>
        
        <div class="contact-section">
            <p class="contact-title">To Restore Service, Please Contact Us:</p>
            <a href="tel:870-276-3950" class="phone-number">870-276-3950</a>
            <p class="hours">Monday - Friday: 9:00 AM - 5:00 PM CST</p>
        </div>
        
        <div class="account-info">
            <p><strong>Website Owner?</strong> Please call the number above to discuss your account and arrange payment. We're here to help get your website back online as quickly as possible.</p>
            <br>
            <p><strong>Website Visitor?</strong> The owner of this website needs to contact their hosting provider. Please check back later or contact the website owner directly if you have their information.</p>
        </div>
    </div>
</body>
</html>
