<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="Cache-control" content="no-cache">
    <meta http-equiv="Pragma" content="no-cache">
    <meta http-equiv="Expires" content="0">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hesap Askıya Alındı</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #ffffff;
            color: #1a2942;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .header {
            background-color: #ffffff;
            padding: 30px 40px;
            border-bottom: 3px solid #1a2942;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .logo img {
            max-width: 240px;
            height: auto;
        }

        .container {
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
            padding: 60px 40px;
            flex: 1;
        }

        .alert-section {
            text-align: center;
            margin-bottom: 50px;
        }

        .alert-icon-large {
            width: 130px;
            height: 130px;
            background: linear-gradient(135deg, #1a2942, #2c4f7c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 35px;
            box-shadow: 0 10px 30px rgba(26, 41, 66, 0.25);
        }

        .alert-icon-large i {
            font-size: 70px;
            color: #ffffff;
        }

        .alert-title {
            font-size: 3.2em;
            font-weight: 700;
            color: #1a2942;
            margin-bottom: 20px;
        }

        .alert-subtitle {
            font-size: 1.35em;
            color: #718096;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .content-box {
            background-color: #ffffff;
            border: 2px solid #1a2942;
            border-radius: 12px;
            padding: 45px;
            margin-bottom: 40px;
        }

        .content-box h2 {
            font-size: 1.9em;
            color: #1a2942;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .content-box p {
            font-size: 1.15em;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .info-card {
            background-color: #ffffff;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 35px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            border-color: #1a2942;
            box-shadow: 0 8px 25px rgba(26, 41, 66, 0.15);
            transform: translateY(-8px);
        }

        .info-card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1a2942, #2c4f7c);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .info-card-icon i {
            font-size: 35px;
            color: #ffffff;
        }

        .info-card h3 {
            font-size: 1.4em;
            color: #1a2942;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .info-card p {
            font-size: 1.05em;
            color: #718096;
            line-height: 1.7;
        }

        .action-box {
            background: linear-gradient(135deg, #1a2942 0%, #2c4f7c 100%);
            color: #ffffff;
            padding: 50px 45px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 40px;
        }

        .action-box h2 {
            font-size: 2.2em;
            margin-bottom: 18px;
            font-weight: 700;
        }

        .action-box p {
            font-size: 1.2em;
            color: #cbd5e0;
            margin-bottom: 35px;
            line-height: 1.8;
        }

        .btn-contact {
            display: inline-block;
            background-color: #ffffff;
            color: #1a2942;
            padding: 20px 55px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2em;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .btn-contact:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        }

        .btn-contact i {
            margin-right: 12px;
            font-size: 1.1em;
        }

        footer {
            background-color: #1a2942;
            color: #ffffff;
            padding: 30px 40px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content p {
            font-size: 1em;
            color: #cbd5e0;
            margin: 8px 0;
        }

        .footer-content strong {
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .header {
                padding: 25px 20px;
            }

            .logo img {
                max-width: 200px;
            }

            .container {
                padding: 40px 20px;
            }

            .alert-icon-large {
                width: 110px;
                height: 110px;
            }

            .alert-icon-large i {
                font-size: 60px;
            }

            .alert-title {
                font-size: 2.4em;
            }

            .alert-subtitle {
                font-size: 1.15em;
            }

            .content-box {
                padding: 35px 25px;
            }

            .content-box h2 {
                font-size: 1.6em;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .info-card {
                padding: 30px 25px;
            }

            .action-box {
                padding: 40px 30px;
            }

            .action-box h2 {
                font-size: 1.8em;
            }

            .btn-contact {
                padding: 18px 45px;
                font-size: 1.1em;
            }

            footer {
                padding: 25px 20px;
            }
        }

        @media (max-width: 480px) {
            .alert-title {
                font-size: 2em;
            }

            .content-box {
                padding: 30px 20px;
            }

            .info-card {
                padding: 25px 20px;
            }

            .info-card-icon {
                width: 60px;
                height: 60px;
            }

            .info-card-icon i {
                font-size: 28px;
            }

            .btn-contact {
                width: 100%;
                padding: 16px 40px;
                font-size: 1.05em;
            }
        }
    </style>
</head>
<body>
    <div class="header">
        <div class="header-content">
            <div class="logo">
                <img src="https://vexa.net.tr/resources/uploads/logo/2025-03-31/vexa-gelecedYi-teknolojiye-olan-tutkumuzla-ineYa-ediyoruz.gif" alt="VEXA Hosting">
            </div>
        </div>
    </div>

    <div class="container">
        <div class="alert-section">
            <div class="alert-icon-large">
                <i class="fas fa-ban"></i>
            </div>
            <h1 class="alert-title">Hesap Askıya Alındı</h1>
            <p class="alert-subtitle">
                Bu hosting hesabı geçici olarak devre dışı bırakılmıştır
            </p>
        </div>

        <div class="content-box">
            <h2>Hesabınız Neden Askıya Alındı?</h2>
            <p>
                Sayın müşterimiz, hosting hesabınız sistem yöneticisi tarafından geçici olarak askıya alınmıştır. 
                Bu durum genellikle aşağıdaki nedenlerden biri veya birkaçından kaynaklanmaktadır.
            </p>
            <p>
                Hesabınızı tekrar aktif hale getirmek ve detaylı bilgi almak için lütfen destek ekibimizle iletişime geçin.
            </p>
        </div>

        <div class="info-grid">
            <div class="info-card">
                <div class="info-card-icon">
                    <i class="fas fa-credit-card"></i>
                </div>
                <h3>Ödeme Sorunları</h3>
                <p>Hosting hizmetinize ait ödeme işlemlerinde sorun yaşanmış olabilir.</p>
            </div>

            <div class="info-card">
                <div class="info-card-icon">
                    <i class="fas fa-database"></i>
                </div>
                <h3>Kota Aşımı</h3>
                <p>Disk alanı veya bant genişliği limitinizi aşmış olabilirsiniz.</p>
            </div>

            <div class="info-card">
                <div class="info-card-icon">
                    <i class="fas fa-shield-alt"></i>
                </div>
                <h3>Güvenlik</h3>
                <p>Hesabınızda güvenlik riski tespit edilmiş olabilir.</p>
            </div>
        </div>

        <div class="action-box">
            <h2>Destek Ekibimizle İletişime Geçin</h2>
            <p>
                Uzman ekibimiz size yardımcı olmak için 7/24 hizmetinizdedir. 
                Hesabınızı hızlıca aktifleştirmek ve sorununuzu çözmek için bizimle iletişime geçin.
            </p>
            <a href="https://vexa.net.tr/iletisim" class="btn-contact">
                <i class="fas fa-headset"></i>
                Destek Talebi Oluştur
            </a>
        </div>
    </div>

    <footer>
        <div class="footer-content">
            <p><strong>VEXA Hosting</strong> - Profesyonel Web Hosting Çözümleri</p>
            <p>© 2025 Tüm hakları saklıdır.</p>
        </div>
    </footer>
</body>
</html>
