
    .page-t-i-app-goal123 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-t-i-app-goal123__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
    }

    .page-t-i-app-goal123__section--hero {
      background-color: #004d40;
      color: #fff;
      text-align: center;
      padding: 60px 20px 40px;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
      padding-top: 10px; /* Small offset, assuming body handles main header offset */
    }

    .page-t-i-app-goal123__title {
      font-size: 2.8em;
      color: #ffc107;
      margin-bottom: 20px;
      text-align: center;
      font-weight: bold;
    }

    .page-t-i-app-goal123__subtitle {
      font-size: 1.5em;
      color: #e0e0e0;
      margin-bottom: 30px;
      text-align: center;
    }

    .page-t-i-app-goal123__button {
      display: inline-block;
      background-color: #ffc107;
      color: #004d40;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

    .page-t-i-app-goal123__button:hover {
      background-color: #ffeb3b;
      transform: translateY(-2px);
    }

    .page-t-i-app-goal123__image-container {
      text-align: center;
      margin-top: 30px;
    }

    .page-t-i-app-goal123__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      display: block;
      margin: 0 auto;
    }

    .page-t-i-app-goal123__heading-2 {
      font-size: 2em;
      color: #004d40;
      margin-bottom: 25px;
      text-align: center;
      font-weight: bold;
    }

    .page-t-i-app-goal123__text {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-t-i-app-goal123__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-t-i-app-goal123__list-item {
      background-color: #e0f2f1;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      flex: 1 1 calc(33% - 20px);
      min-width: 280px;
      text-align: center;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-t-i-app-goal123__list-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .page-t-i-app-goal123__list-item-title {
      font-size: 1.3em;
      color: #004d40;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-t-i-app-goal123__list-item-description {
      font-size: 1em;
      color: #555;
    }

    .page-t-i-app-goal123__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-t-i-app-goal123__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
      background-color: #f1f8e9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .page-t-i-app-goal123__step-number {
      background-color: #4caf50;
      color: #fff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.4em;
      font-weight: bold;
      flex-shrink: 0;
      margin-right: 15px;
    }

    .page-t-i-app-goal123__step-content {
      flex-grow: 1;
    }

    .page-t-i-app-goal123__step-title {
      font-size: 1.3em;
      color: #388e3c;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .page-t-i-app-goal123__step-description {
      font-size: 1em;
      color: #555;
    }

    .page-t-i-app-goal123__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-t-i-app-goal123__game-card {
      background-color: #f1f1f1;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-t-i-app-goal123__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .page-t-i-app-goal123__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      max-width: 100%;
      display: block;
    }

    .page-t-i-app-goal123__game-title {
      font-size: 1.2em;
      color: #004d40;
      padding: 15px 10px 5px;
      font-weight: bold;
    }

    .page-t-i-app-goal123__game-description {
      font-size: 0.9em;
      color: #666;
      padding: 0 10px 15px;
    }

    .page-t-i-app-goal123__promo-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-t-i-app-goal123__promo-item {
      background-color: #fff3e0;
      border-left: 5px solid #ff9800;
      padding: 15px;
      margin-bottom: 15px;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .page-t-i-app-goal123__promo-title {
      font-size: 1.2em;
      color: #e65100;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .page-t-i-app-goal123__promo-description {
      font-size: 1em;
      color: #555;
    }

    .page-t-i-app-goal123__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-t-i-app-goal123__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-t-i-app-goal123__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-t-i-app-goal123__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: #004d40;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-t-i-app-goal123__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-t-i-app-goal123__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevent span from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-t-i-app-goal123__faq-item.active .page-t-i-app-goal123__faq-toggle {
      transform: rotate(45deg);
    }

    .page-t-i-app-goal123__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #555;
      font-size: 1em;
    }

    .page-t-i-app-goal123__faq-item.active .page-t-i-app-goal123__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-t-i-app-goal123__section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }

      .page-t-i-app-goal123__section--hero {
        padding: 40px 15px 30px;
      }

      .page-t-i-app-goal123__title {
        font-size: 2.2em;
      }

      .page-t-i-app-goal123__subtitle {
        font-size: 1.2em;
      }

      .page-t-i-app-goal123__heading-2 {
        font-size: 1.8em;
      }

      .page-t-i-app-goal123__text {
        font-size: 1em;
      }

      .page-t-i-app-goal123__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-t-i-app-goal123__list {
        flex-direction: column;
        gap: 15px;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-t-i-app-goal123__list-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-t-i-app-goal123__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-t-i-app-goal123__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-t-i-app-goal123__game-grid {
        grid-template-columns: 1fr;
      }

      .page-t-i-app-goal123__game-image {
        height: 150px;
      }

      .page-t-i-app-goal123__faq-question {
        font-size: 1.1em;
        padding: 12px 0;
      }

      .page-t-i-app-goal123__faq-answer {
        padding: 0 10px;
      }

      .page-t-i-app-goal123__faq-item.active .page-t-i-app-goal123__faq-answer {
        padding: 15px 10px !important;
      }

      .page-t-i-app-goal123__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  