<!DOCTYPE html>
<html>
<head>
    <title>Website hết hạn sử dụng</title>
    <style type="text/css">
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            color: #333;
        }

        .container {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
            padding: 40px;
            text-align: center;
            max-width: 1200px;
            width: 1000px;
            margin: 20px;
            animation: fadeIn 1s ease-in-out;
        }

        .container img {
            border-radius: 10px;
            object-fit: cover;
            height: 414px;
            width: 100%;
            max-width: 100%;
            margin-bottom: 0px;
        }

        .main-image {
            margin-top: 4rem;
            margin-bottom: 4rem;
        }
        .title-main {
            font-size: 27px;
            margin-bottom: 10px;
            color: #e74c3c;
        }

        .subheading {
            color: #323229;
            margin-bottom: 15px;
            line-height: 1.5;
            font-size: 15px;
            letter-spacing: 0.26px;
        }
        .contact span {
            font-weight: bold;
            color: #ff6601;
        }
        .text {
            font-size: 16px;
            color: #777;
            margin-bottom: 20px;
        }

        .btn {
            display: inline-block;
            background-color: #28a745;
            color: #ffffff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #218838;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        ul.contact > li {
            width: 25%;
        }
        ul.contact {
            display: flex;
            list-style: none;
            padding-left: 0;
            flex-wrap: wrap;
            justify-content: center;
        }
    </style>
</head>
<body>
    <div class="container card">
        <h1 class="title-main">Website của bạn hiện tại đã hết hạn sử dụng!</h1>
        <div class="main-image">
            <img src="/admin/assets/media/error/bg-website-oudate.webp">
        </div>

        <p class="subheading">
            Để tiếp tục sử dụng dịch vụ, bạn vui lòng liên hệ đến đội ngũ support web4s để được hỗ trợ
        </p>
        <ul class="contact">
            <li><span>Hotline: 1900 6680 - 0901191616  </span> </li>
            <li> <span>Email: contact@sm4s.vn  </span> </li>
            <li><span>Website: https://web4s.vn/</span></li>
           
            
        </ul>

            </div>
</body>
</html>

