<style>
      /*======================
            Under Maintenance Page
        =======================*/

      body {
        margin: 0;
        padding: 0;
display: flex;
  align-items: center;
  justify-content: center;
        font-family: "Arvo", serif;
        text-align: center;
      }
      .maintenance_page {
        flex-direction:column;
        display: flex;
  align-items: center;
  justify-content: center;
       
      }
      .maintenance_bg h1 {
        font-size: 40px;
        margin: 0;
        color: #222;
        font-weight: bold;
      }

      .maintenance_image {
        width: 50%;
        max-width: 300px;
        height: auto;
      }

      .maintenance_content {
        display: flex;
  align-items: center;
  justify-content: center;
        flex-direction:column;
        margin-top: 10px;
      }

      .maintenance_content h3 {
        font-size: 30px;
        color: #333;
      }
      p {
        margin: 0;
        padding: 0;
      }
      .maintenance_content p {
        font-size: 18px;
        color: #555;
      }

      .btn_home {
        color: #fff !important;
        padding: 12px 25px;
        background: #ff9800;
        margin: 20px 0;
        display: inline-block;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
        border-radius: 5px;
        transition: 0.3s ease-in-out;
      }

      .btn_home:hover {
        background: #e68900;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .maintenance_bg h1 {
          font-size: 40px;
        }

        .maintenance_image {
          max-width: 300px;
        }

        .maintenance_content h3 {
          font-size: 24px;
        }

        .maintenance_content p {
          font-size: 16px;
        }

        .btn_home {
          font-size: 16px;
          padding: 10px 20px;
        }
      }
    </style>