
    .page-gai-5-net {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-gai-5-net__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height for mobile first */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 10px; /* Small decorative padding, assuming body has header offset */
      overflow: hidden;
    }

    .page-gai-5-net__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-gai-5-net__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.4));
      z-index: 2;
    }

    .page-gai-5-net__hero-content {
      position: relative;
      z-index: 3;
      max-width: 90%;
      padding: 20px;
    }

    .page-gai-5-net__hero-title {
      font-size: 2.2em;
      color: #e6b800; /* Gold-like color for emphasis */
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-gai-5-net__hero-title strong {
      color: #fff;
    }

    .page-gai-5-net__hero-description {
      font-size: 1.1em;
      color: #ffffff;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-gai-5-net__hero-cta-button,
    .page-gai-5-net__register-cta-button {
      display: inline-block;
      background-color: #e6b800;
      color: #1a1a2e;
      padding: 12px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-gai-5-net__hero-cta-button:hover,
    .page-gai-5-net__register-cta-button:hover {
      background-color: #ffd700;
      transform: translateY(-2px);
    }

    .page-gai-5-net__section-title {
      font-size: 2em;
      color: #e6b800;
      text-align: center;
      margin-bottom: 40px;
      padding-top: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-gai-5-net__section-subtitle {
      font-size: 1.1em;
      color: #ccc;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-gai-5-net__benefits-section,
    .page-gai-5-net__products-section,
    .page-gai-5-net__promo-section,
    .page-gai-5-net__register-section,
    .page-gai-5-net__faq-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-gai-5-net__benefits-grid,
    .page-gai-5-net__products-grid,
    .page-gai-5-net__promo-grid,
    .page-gai-5-net__steps-grid {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      justify-content: center;
    }

    .page-gai-5-net__benefit-item,
    .page-gai-5-net__product-card,
    .page-gai-5-net__promo-card,
    .page-gai-5-net__step-item {
      background-color: #2e2e4e;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-gai-5-net__benefit-item:hover,
    .page-gai-5-net__product-card:hover,
    .page-gai-5-net__promo-card:hover,
    .page-gai-5-net__step-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-gai-5-net__benefit-icon {
      width: 100%; /* Ensure images are responsive */
      max-width: 250px;
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-gai-5-net__benefit-title,
    .page-gai-5-net__product-title,
    .page-gai-5-net__promo-title,
    .page-gai-5-net__step-title {
      font-size: 1.4em;
      color: #e6b800;
      margin-bottom: 10px;
    }

    .page-gai-5-net__benefit-description,
    .page-gai-5-net__product-description,
    .page-gai-5-net__promo-description,
    .page-gai-5-net__step-description {
      font-size: 0.95em;
      color: #ccc;
    }

    .page-gai-5-net__product-image,
    .page-gai-5-net__promo-image {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
    }

    .page-gai-5-net__step-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background-color: #e6b800;
      color: #1a1a2e;
      font-size: 1.8em;
      font-weight: bold;
      border-radius: 50%;
      margin: 0 auto 20px auto;
    }

    .page-gai-5-net__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-gai-5-net__faq-item {
      background-color: #2e2e4e;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-gai-5-net__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3f3f6e;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-gai-5-net__faq-question:hover {
      background-color: #4a4a7a;
    }

    .page-gai-5-net__faq-title {
      font-size: 1.1em;
      color: #e6b800;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-gai-5-net__faq-toggle {
      font-size: 1.5em;
      color: #e6b800;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-gai-5-net__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
    }

    .page-gai-5-net__faq-answer p {
      margin: 0;
      padding-bottom: 15px;
    }

    .page-gai-5-net__faq-item.active .page-gai-5-net__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    .page-gai-5-net__faq-item.active .page-gai-5-net__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'X' or '−' */
    }

    /* Floating Buttons */
    .page-gai-5-net__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-gai-5-net__floating-button {
      display: block;
      width: 120px;
      padding: 12px 0;
      text-align: center;
      border-radius: 25px;
      font-weight: bold;
      text-decoration: none;
      color: #1a1a2e;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .page-gai-5-net__register-btn {
      background-color: #e6b800;
    }

    .page-gai-5-net__login-btn {
      background-color: #ffffff;
    }

    .page-gai-5-net__floating-button:hover {
      transform: translateY(-3px);
    }

    .page-gai-5-net__register-btn:hover {
      background-color: #ffd700;
    }

    .page-gai-5-net__login-btn:hover {
      background-color: #f0f0f0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-gai-5-net__hero-section {
        height: 50vh;
      }

      .page-gai-5-net__hero-title {
        font-size: 1.8em;
      }

      .page-gai-5-net__hero-description {
        font-size: 1em;
      }

      .page-gai-5-net__hero-cta-button,
      .page-gai-5-net__register-cta-button {
        padding: 10px 25px;
        font-size: 1em;
      }

      .page-gai-5-net__section-title {
        font-size: 1.6em;
        padding-top: 30px;
        margin-bottom: 30px;
      }

      .page-gai-5-net__section-subtitle {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      .page-gai-5-net__benefits-section,
      .page-gai-5-net__products-section,
      .page-gai-5-net__promo-section,
      .page-gai-5-net__register-section,
      .page-gai-5-net__faq-section {
        padding: 30px 15px;
      }

      .page-gai-5-net__benefits-grid,
      .page-gai-5-net__products-grid,
      .page-gai-5-net__promo-grid,
      .page-gai-5-net__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%; /* Ensure container takes full width */
        max-width: 100%;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
      }

      .page-gai-5-net__benefit-item,
      .page-gai-5-net__product-card,
      .page-gai-5-net__promo-card,
      .page-gai-5-net__step-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-gai-5-net__benefit-icon,
      .page-gai-5-net__product-image,
      .page-gai-5-net__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-gai-5-net__benefit-title,
      .page-gai-5-net__product-title,
      .page-gai-5-net__promo-title,
      .page-gai-5-net__step-title {
        font-size: 1.2em;
      }

      .page-gai-5-net__benefit-description,
      .page-gai-5-net__product-description,
      .page-gai-5-net__promo-description,
      .page-gai-5-net__step-description {
        font-size: 0.9em;
      }

      .page-gai-5-net__faq-question {
        padding: 12px 15px;
      }

      .page-gai-5-net__faq-title {
        font-size: 1em;
      }

      .page-gai-5-net__faq-answer {
        padding: 0 15px;
      }

      .page-gai-5-net__faq-item.active .page-gai-5-net__faq-answer {
        padding: 15px !important;
      }

      .page-gai-5-net__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
      }

      .page-gai-5-net__floating-button {
        width: 48%;
        padding: 10px 0;
        font-size: 0.95em;
      }
    }
  