body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fc;
    color: #333;
    text-align: center;
    padding: 50px;
  }
  .error-container {
    max-width: 600px;
    margin: 0 auto;
  }
  .error-code {
    font-size: 72px;
    color: #5057ef;
  }
  .error-message {
    font-size: 24px;
    color: #4a4a4a;
  }
  .error-description {
    font-size: 18px;
    margin-top: 20px;
    color: #6c757d;
  }
  .contact-info {
    margin-top: 20px;
  }
  .redirect-notice {
    margin-top: 30px;
    font-size: 16px;
  }
  .counter {
    font-size: 24px;
    color: #d9534f;
    margin-top: 10px;
  }
  .control-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    color: white;
    background-color: #5057ef;
    border: none;
    border-radius: 5px;
  }
  a {  /* This rule ensures all links have the same color */
    color: #5057ef; /* Change this color if you want a different one */
    text-decoration: none; /* Optional: removes underline from links */
  }
  a:hover {
    text-decoration: underline; /* Optional: underline on hover for better usability */
  }