 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

       .maintainance-body {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            background: radial-gradient(
            circle at top left,
            #ffffff 0%,
            #dfdddd,
            #a1ce0d 100%
            );

            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #72960d;
        }

        .container-mx {
            animation: fadeIn 1.5s ease forwards;
            opacity: 0;
            padding: 20px;
        }

        .container-mx h1 {
            font-size: 2.8rem;
            font-weight: 600;
            margin-bottom: 10px;
            animation: slideDown 1.6s ease forwards;
            opacity: 0;
        }

        .container-mx p {
            font-size: 1.2rem;
            opacity: 0;
            animation: fadeText 2.2s ease forwards;
        }

        .btn-go {
            margin-top: 30px;
            display: inline-block;
            padding: 12px 28px;
            background: #ffffff;
            color: #0f4954;
            font-size: 1rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: 0.3s ease;
            animation: fadeText 2.8s ease forwards;
            opacity: 0;
        }

       .container-mx a .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.18);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes slideDown {
            0% { transform: translateY(-20px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }

        @keyframes fadeText {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        @media (max-width: 600px) {
            .container-mx h1 { font-size: 2rem; }
            .container-mx p { font-size: 1rem; }
        }