p {
    color: #666;
    line-height: 1.62;
    margin: 0;
  }

  .intro {
    padding: 0 0 32px 0;
  }

  .switch-box {
    display: flex;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }

  .switch-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: #000;
    position: relative;
    border-bottom: 1px solid #ccc;
  }

  .switch-btn img {
    margin-right: 10px;
  }

  .switch-btn.active {
    font-weight: bold;
    color: red;
  }

  .switch-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: red;
  }

  .content-box {
    display: none;
    padding: 20px;
  }

  .content-box.active {
    display: block;
  }

  .box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }

  .image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding: 0;
  }

  .image-box img {
    width: 100%;
    border-radius: 10px;
  }

  .questions-box {
    padding: 20px;
    position: relative;
  }

  .faq {
    margin-bottom: 10px;
  }

  .faq-title {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0;
    font-weight: bold;
    color: #333;
  }

  .faq-content {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
  }

  .faq.active .faq-content {
    display: block;
  }

  .toggle-icon {
    font-weight: bold;
    margin-left: 10px;
    transition: transform 0.3s;
  }

  .faq.active .toggle-icon {
    transform: rotate(180deg);
  }

  .faq-content img {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
  }

  .button-box {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .button-box a {
    color: red;
    text-decoration: none;
  }

  .button-box button {
    background-color: #ff4747;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
  }

  @media (max-width: 768px) {
    .image-box {
      display: none;
    }

    .questions-box {
      padding-bottom: 80px;
      /* Increase padding to accommodate the button box */
    }

    .button-box {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: static;
      margin-top: 16px;
    }

    .button-box a {
      margin-bottom: 16px;
    }

    .content-box {
      padding: 20px 30px;
    }

    .switch-box {
      justify-content: center;
      max-width: 1200px;
      margin: 0 20px;
    }

    .switch-btn {
      font-size: 14px;
      padding: 10px 8px;
      justify-content: flex-start;
    }

    .intro {
      padding: 0;
      font-size: 14px;
    }
  }