  body {
      font-family: 'Afacad', sans-serif;
      background-color: #F7EDFF;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  .container {
      width: 100%;
      /* max-width: 430px; */
      margin: 64px auto 0;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  header {
      width: 100%;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      /* max-width: 430px; */
      margin: 0 auto;
      padding: 0 16px;
      position: fixed;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #F7EDFF;
      z-index: 1000;
      box-sizing: border-box;
  }

  .href-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 16px;
      border-radius: 16px;
      text-decoration: none;
      color: #FFFFFF;
  }

  .header-button {

      height: 32px;
      background-color: #18003F;

  }

  h1 {
      font-size: 36px;
      text-align: center;
      margin: 0;
      margin-top: 36px;
      color: #18003F;
  }

  h2 {
      text-align: center;
      margin: 0;
      margin-top: 36px;
      color: #18003F;
      max-width: 360px;
  }

  .top-description {
      margin: 0;
      color: #6B7280;
      font-size: 18px;
      max-width: 360px;
      margin-top: 24px;
      text-align: center;
  }


  #features-wrapper {
      margin-top: 24px;
      overflow: hidden;
      width: 100%;
      position: relative;
  }

  #features-wrapper::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 60px;
      height: 100%;
      background: linear-gradient(to right, #F7EDFF, transparent);
      z-index: 1;
      pointer-events: none;
  }

  #features-wrapper::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      width: 60px;
      height: 100%;
      background: linear-gradient(to left, #F7EDFF, transparent);
      z-index: 1;
      pointer-events: none;
  }

  #features-list {
      display: flex;
      flex-direction: row;
      align-items: center;
  }

  #features-list>div {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      white-space: nowrap;
      padding-right: 32px;
  }

  #features-list>div>span {
      font-size: 16px;
      color: #6B7280;
      background-color: #FFFFFF;
      padding: 8px 16px;
      border-radius: 20px;
  }

  .main-button {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #8C53F7;
      height: 48px;
      border-radius: 24px;
      margin-top: 24px;
  }

  .main-button>span {
      margin-left: 12px;
  }

  .speech-recording-container {
      width: 100%;
      /* background-color: #FFFFFF; */
      background: url("images/bg-voice-record.png");
      background-size: cover;
      background-position: center;
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .speech-recording-container>img {
      width: calc(100% - 32px);
      max-width: 400px;
  }

  .push-to-talk-link {
      margin-top: 24px;
  }

  .speech-recording-container>p {
      margin: 24px 0;
      font-size: 18px;
      color: #7234DC;
  }


  .speech-transcribe-container {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .speech-transcribe-container>.icon {
      margin-top: 48px;
  }

  .speech-transcribe-container>h2 {
      margin-top: 16px;
  }

  .speech-transcribe-container>.image {
      margin-top: 16px;
      width: calc(100% - 32px);
      max-width: 400px;
  }

  .speech-transcribe-container>p {
      margin: 24px 0;
      font-size: 18px;
      color: #7234DC;
  }

  .private-notes-container {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #FFFFFF;
      padding-bottom: 48px;
  }

  h4 {
      margin-top: 36px;
  }

  .private-notes-container>.rate {
      width: 160px;
      margin-top: 24px;
  }

  .features-container {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 48px;
  }

  .feature {
    background-color: #FFFFFF;
    max-width: 360px;
    margin-top: 16px;
    padding: 32px;
    border-radius: 24px;
    box-sizing: border-box;
  }

  .feature:first-of-type {
    margin-top: 32px;
  }

  .feature > h5 {
    font-size: 24px;
    margin: 0;
  }

  .features-container > .main-button {
    margin-top: 32px;
  }

  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    width: 100%;
    box-sizing: border-box;
    padding: 32px 0;
  }

  footer > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
  }

  footer > div > a {
    color: #8C53F7;
    font-size: 18px;
  }