/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #35b9f5, #ffffff);
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
  }
  
  .maintenance-page {
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
  }
  
  .logo h1 {
    font-size: 36px;
    color: #35b9f5;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .logo h1 span {
    color: #333333;
  }
  
  .message h1 {
    font-size: 35px;
    color: #333333;
    margin-bottom: 16px;
  }

  .img-cls{
    margin-bottom: 20px;
    width: 50%;
    height: 50%;
  }
  
  .message p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  .contact-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #555555;
  }
  
  .contact-info strong {
    color: #35b9f5;
  }
  
  footer {
    margin-top: 20px;
    font-size: 14px;
    color: #aaaaaa;
  }
  
  footer p {
    font-size: 13px;
  }
  