/* Untuk Tablet */
@media all and (max-width: 1000px) {
  .lesson {
    width: 45%;
    margin-bottom: 50px;
  }

  .top-wrapper h1 {
    font-size: 100px;
  }

  .heading h2 {
    font-size: 30px;
  }
  .flex-list {
    flex-wrap: wrap;
  }
  .flex-list li {
    width: 50%;
  }
  .message-wrapper p {
    font-size: 15px;
}

/* Untuk Smartphone */
@media all and (max-width: 670px) {
  .lesson {
    width: 100%;
  }

  footer {
    text-align: center;
  }

  .btn {
    width: 100%;
  }

  .katalog {
    margin-bottom: 10px;
  }

  .top-wrapper {
    text-align: center;
  }

  /* Tambahkan CSS untuk header-right */
  .header-right {
    display: none;
  }

  /* Tambahkan CSS untuk menu-icon */
  .menu-icon {
    display: block;
    color: #da1a40;
  }

  .top-wrapper h1 {
    font-size: 64px;
    line-height: 36px;
  }
  .top-wrapper h2 {
    font-size: 24px;
    line-height: 1;
  }
  .top-wrapper p {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 50px;
    padding-right: 50px;
  }
  .message-wrapper p {
    font-size: 14px;
  }
  .location p {
    padding-left: 10px;
    font-size: 14px;
  }
  .flex-list {
    flex-direction: column;
    display: flex;
  }
  .flex-list li {
    margin: 10px;
    flex: auto;
    width: 100%;
  }
}
