  .announcement {
    margin: 0 auto;
  }
  
  .announcement h3 {
    margin-top: 20px;
  }
  
  .announcement .menu-group {
    padding: 0;
    margin-top: 0;
  }
  
  .announcement .menu-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
  }

  .announcement .menu-item a {
    color: #00118f;
    font-size: 16px;
    font-weight: bold;
  }

  #issue-process ul {
    padding: 0;
    margin: 0;
  }

  
  #issue-process .menu-group {
    padding: 0;
    margin: 0;
  }

  #issue-process .menu-group li:before {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background-color: #00118f;
    color: #f1f8f8;
    border-radius: 50%;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 30px;
  }

  #issue-process .menu-group li:nth-child(1):before {
    content: "1";
  }

  #issue-process .menu-group li:nth-child(2):before {
    content: "2";
  }

  #issue-process .menu-group li:nth-child(3):before {
    content: "3";
  }

  #issue-process .menu-group li::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 80px;
    bottom: -20px;
    width: 1px;
    background-image: radial-gradient(circle, #00118f 1px, transparent 1px);
    background-size: 2px 4px;
    background-repeat: repeat-y;
  }

  #issue-process .menu-group li {
    display: flex;
    align-items: flex-start;
    padding-bottom: 20px;
    position: relative;
  }

  #issue-process .menu-group li:last-child {
    padding-bottom: 0;
  }

  #issue-process .menu-group span {
    width: 80%;
    padding: 0 10px;
  }

  #issue-process .menu-group .icon {
    font-size: 50px;
    align-self: center;
    position: relative;
    display: inline-block;
    color: #ccc;
  }

  @media (max-width: 768px) {
    #issue-process .menu-group li span {
        position: relative;
        margin-top: 0px;
        width: 100%;
    }

    #issue-process .menu-group li span.button-text {
        margin-top: 0;
    }

    #issue-process .menu-group .icon {
        display: none;
    }

    #issue-process .menu-group li:before {
        margin-top: 30px;
    }

    #issue-process .menu-group li::after {
        margin-top: 0px;
    }

    #issue-process .menu-group li::after {
        bottom: -20px;
    }
  }
  
  #download h3 {
    margin: 10px 0;
  }

  @media (max-width: 768px) {
    #download {
      display: none;
    }
  }