.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }

  .modal-container {
    position: relative;
    display: flex;
    width: 90%;
    max-width: 582px;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.2);
    z-index: 10000;
  }

  .modal-close {
    background: transparent;
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
    position: absolute;
    right: 16px;
    top: 16px;
    border: none;
    cursor: pointer;
    padding: 0;

    &:hover {
      opacity: 0.7;
    }
  }

  .modal-content {
    width: 100%;

    h3 {
      color: #444;
      text-align: center;
      font-family: "Roboto", sans-serif;
      font-size: 20px;
      font-weight: 700;
      line-height: 28px;
      letter-spacing: 1px;
      margin: 0 0 10px;
      @media (max-width: 480px) {
        font-size: 16px;
        line-height: normal;
      }
    }

    h1 {
      color: #ff6200;
      font-family: "Roboto", sans-serif;
      font-size: 34px;
      font-weight: 700;
      line-height: 44px;
      margin: 0 0 10px;
      text-align: center;
      @media (max-width: 480px) {
        font-size: 24px;
        line-height: 36px;
      }
    }
    .modal-body {
      p {
        color: #444;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin: 0;
        text-align: center;
      }
    }

    .modal-cta {
      margin: 24px 0 0;
      display: flex;
      justify-content: center;

      a {
        display: flex;
        padding: 16px 24px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        border-radius: 100px;
        background: #111;
        color: #fff;
        text-decoration: none;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 600;
        width: fit-content;

        &:hover {
          background: #111111c0;
        }
      }
    }

    .modal-footer {
      display: flex;
      width: 100%;
      justify-content: center;
      align-items: center;
      gap: 16px;

      a {
        color: #006482;
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        text-decoration: underline;

        @media (max-width: 480px) {
          font-size: 13px;
        }
      }
    }

    .modal-checkbox-label {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #666;
      font-family: "Roboto", sans-serif;
      font-size: 14px;
      font-weight: 500;
      line-height: 24px;
      cursor: pointer;

      @media (max-width: 480px) {
        font-size: 13px;
      }
    }

    .modal-checkbox {
      cursor: pointer;
      width: 18px;
      height: 18px;
    }
  }
}
