#service {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 70px 15px 100px 15px;
  max-width: 930px;
  width: 100%;
  > a {
    align-items: center;
    align-self: flex-end;
    border: 1px solid var(--colorGreen);
    border-radius: 26px;
    color: var(--colorGreen);
    display: flex;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 50px;
    margin: 30px 0px 0px 0px;
    padding: 0px 16px 0px 5px;
    text-decoration: none;
    @media (pointer: fine) {
      &:hover {
        background-color: var(--colorGreen);
        color: white;
        &::before {
          background-image: url('/img/contact-white.png');
        }
      }
    }
    &::before {
      content: '';
      background-image: url('/img/contact-green.png');
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      height: 30px;
      width: 70px;
    }
  }
  > div {
    display: flex;
    flex-direction: column;
    > div {
      width: 500px;
      @media (max-width: 530px) {
        width: 100%;
      }
      > img {
        padding: 10px 10px 10px 10px;
        width: 100%;
        &.tile {
          box-shadow: 1px 1px 3px var(--colorBlue);
        }
      }
      > p {
        font-style: italic;
        font-size: 1rem;
        margin: 5px 0px 0px 0px;
      }
    }
    > ul {
      background-color: var(--colorGreyTranslucent);
      border-radius: 5px;
      margin: 40px 0px 0px 0px;
      padding: 20px 10px 20px 30px;
      width: 100%;
      > li {
        > a {
          text-decoration: none;
          @media (pointer: fine) {
            &:hover {
              text-decoration: underline;
            }
          }
        }
      }
    }
  }
  > h2 {
    margin-top: 35px;
  }
  > p {
    margin: 5px 0px 5px 0px;
    text-align: justify;
    &:has(span) {
      border-top: 2px solid var(--colorGreen);
      margin: 40px 0px 0px 0px;
      padding: 40px 0px 0px 0px;
    }
    &:nth-of-type(1) {
      margin: 40px 0px 5px 0px;
    }
    > span {
      color: var(--colorGreen);
      font-size: 2.6rem;
      font-weight: bold;
      line-height: 1;
    }
  }
}
