@font-face {
    font-family: "Prestafont";
    src:
      url("https://storage.googleapis.com/ps-eu-w1-addons-cdn-production/maintenance_page/Prestafont-Regular.woff2")
        format("woff2"),
      url("https://storage.googleapis.com/ps-eu-w1-addons-cdn-production/maintenance_page/Prestafont-Regular.otf")
        format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  * {
    box-sizing: border-box;
  }

  html,
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
  }

  body {
    background-color: var(--puik-primary-200, #f7f7f7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  .header {
    width: 100%;
    background-color: var(--puik-white, #ffffff);
    display: flex;
    flex-direction: column;
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
  }

  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo {
    height: 29px;
    width: auto;
    max-width: 180px;
  }

  .header-divider {
    width: 100%;
    height: 1px;
    border: none;
    background-color: var(--puik-primary-400, #dddddd);
    margin: 0;
  }

  .main {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 24px;
  }

  .container {
    width: 100%;
    max-width: 976px;
    background-color: var(--puik-white, #ffffff);
    border: 1px solid var(--puik-primary-400, #dddddd);
    padding: 24px 72px 32px;
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 8px 32px;
  }

  #title {
    text-align: center;
    width: 100%;
    margin: 0;
    color: var(--puik-primary-800, #1d1d1b) !important;
  }

  .details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 72px;
    width: 100%;
  }

  .text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  /* Override PUIK body classes for centering and color */
  .puik-body-large-bold,
  .puik-body-large {
    text-align: center !important;
    width: 100%;
    margin: 0;
    color: var(--puik-primary-800, #1d1d1b) !important;
  }

  .illustration-container {
    width: 100%;
    max-width: 412px;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .illustration {
    width: 100%;
    height: auto;
    display: block;
  }

  .help-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
  }

  .help-section .puik-body-default {
    color: var(--puik-primary-600, #5e5e5e) !important;
    text-align: center;
    white-space: nowrap;
  }

  .help-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--puik-font-family, "IBM Plex Sans", sans-serif);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--puik-primary-800, #1d1d1b);
    text-decoration: none;
    border-bottom: 1px solid var(--puik-primary-500, #bbbbbb);
    padding: 4px 4px;
    transition: all 0.2s ease;
  }

  .help-link:hover {
    border-bottom-color: var(--puik-primary-800, #1d1d1b);
  }

  .help-link .material-symbols-outlined {
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
    color: var(--puik-primary-800, #1d1d1b);
  }

  .help-link:hover .material-symbols-outlined {
    color: var(--puik-primary-800, #1d1d1b);
  }

  @media screen and (max-width: 992px) {
    .container {
      max-width: 90%;
      padding: 24px 32px 32px;
    }

    .details {
      padding: 0 32px;
    }

    #title {
      font-size: 45px;
      line-height: 52px;
    }
  }
  @media screen and (max-width: 768px) {
    body {
      gap: 24px;
    }

    .header-content {
      padding: 16px;
    }

    .container {
      max-width: 95%;
      padding: 16px 32px 24px;
    }

    .content {
      padding: 8px 16px;
      gap: 16px;
    }

    #title {
      font-size: 40px;
      line-height: 48px;
      letter-spacing: -0.8px;
    }

    .details {
      padding: 0 16px;
      gap: 16px;
    }

    .puik-body-large-bold,
    .puik-body-large {
      font-size: 15px;
      line-height: 21px;
    }

    .illustration-container {
      max-width: 100%;
    }

    .help-section {
      flex-direction: column;
      gap: 4px;
    }
  }

  @media screen and (max-width: 480px) {
    #title {
      font-size: 32px;
      line-height: 40px;
    }

    .container {
      padding: 16px 24px 24px;
    }

    .details {
      padding: 0 8px;
    }

    .puik-body-large-bold,
    .puik-body-large {
      font-size: 14px;
      line-height: 20px;
    }
  }