
    .page-1-gim {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 50px; /* Space for potential floating footer/buttons */
    }

    .page-1-gim__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-1-gim__section {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-1-gim__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-1-gim__hero-section {
      background-color: #1a2a3a;
      color: #fff;
      padding: 60px 0;
      position: relative;
      overflow: hidden;
      padding-top: 70px; /* Decorative padding-top, assuming body has header offset */
    }

    .page-1-gim__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
    }

    .page-1-gim__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-1-gim__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #f1c40f;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-1-gim__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #ecf0f1;
    }

    .page-1-gim__button {
      display: inline-block;
      background-color: #f1c40f;
      color: #2c3e50;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-1-gim__button:hover {
      background-color: #e6b800;
    }

    .page-1-gim__title {
      font-size: 2.2em;
      color: #2c3e50;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-1-gim__title--light {
      color: #ecf0f1;
    }

    .page-1-gim__title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #f1c40f;
      border-radius: 2px;
    }

    .page-1-gim__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-1-gim__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-1-gim__card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-1-gim__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-1-gim__card-image-wrapper {
      width: 100%;
      max-width: 300px;
      height: 200px; /* Fixed height for consistent card size */
      margin-bottom: 15px;
      overflow: hidden;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
    }

    .page-1-gim__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      max-width: 100%; /* Ensure image responsiveness */
    }

    .page-1-gim__card-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-1-gim__card-description {
      font-size: 0.95em;
      color: #666;
      flex-grow: 1;
    }

    .page-1-gim__promotion-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 25px;
      box-sizing: border-box;
    }

    .page-1-gim__promotion-image-wrapper {
      width: 100%;
      max-width: 400px;
      height: 250px;
      margin-bottom: 20px;
      overflow: hidden;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
    }

    .page-1-gim__promotion-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      max-width: 100%; /* Ensure image responsiveness */
    }

    .page-1-gim__promotion-title {
      font-size: 1.6em;
      color: #e74c3c;
      margin-bottom: 10px;
    }

    .page-1-gim__promotion-text {
      font-size: 1em;
      color: #333;
      margin-bottom: 15px;
    }

    .page-1-gim__payment-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-1-gim__logo-item {
      background-color: #fff;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 80px;
      box-sizing: border-box;
    }

    .page-1-gim__logo-image {
      max-width: 100%;
      max-height: 60px;
      height: auto;
      object-fit: contain;
    }

    .page-1-gim__faq-section {
      background-color: #ecf0f1;
      padding: 60px 0;
    }

    .page-1-gim__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
    }

    .page-1-gim__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #2c3e50;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-1-gim__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-1-gim__faq-question h3 {
      margin: 0;
      padding: 0;
      pointer-events: none;
      flex-grow: 1;
      color: #2c3e50;
      font-size: 1.1em;
    }

    .page-1-gim__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      pointer-events: none;
      transition: transform 0.3s ease;
      color: #f1c40f;
    }

    .page-1-gim__faq-item.active .page-1-gim__faq-toggle {
      transform: rotate(45deg);
    }

    .page-1-gim__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: #555;
    }

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

    .page-1-gim__cta-section {
      background-color: #2c3e50;
      color: #fff;
      padding: 50px 0;
    }

    .page-1-gim__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #f1c40f;
    }

    .page-1-gim__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 768px) {
      .page-1-gim__hero-title {
        font-size: 2.2em;
      }

      .page-1-gim__hero-subtitle {
        font-size: 1.1em;
      }

      .page-1-gim__title {
        font-size: 1.8em;
      }

      .page-1-gim__text {
        font-size: 1em;
      }

      .page-1-gim__grid {
        grid-template-columns: 1fr;
      }

      .page-1-gim__card {
        padding: 20px;
      }

      .page-1-gim__card-image-wrapper {
        height: 180px;
      }

      .page-1-gim__promotion-item {
        padding: 20px;
      }

      .page-1-gim__promotion-image-wrapper {
        height: 200px;
      }

      .page-1-gim__payment-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-1-gim__faq-question {
        font-size: 1em;
        padding: 15px;
      }

      .page-1-gim__faq-question h3 {
        font-size: 1em;
      }

      .page-1-gim__faq-answer {
        padding: 0 15px;
      }

      .page-1-gim__faq-item.active .page-1-gim__faq-answer {
        padding: 15px !important;
      }

      .page-1-gim__cta-title {
        font-size: 2em;
      }

      .page-1-gim__cta-text {
        font-size: 1em;
      }

      /* Mobile responsive for all list items */
      .page-1-gim__grid > div,
      .page-1-gim__payment-providers-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-1-gim__grid,
      .page-1-gim__payment-providers-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-1-gim__text,
      .page-1-gim__cta-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-1-gim__card-description,
      .page-1-gim__promotion-text,
      .page-1-gim__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-1-gim__card-image,
      .page-1-gim__promotion-image,
      .page-1-gim__logo-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-1-gim__card-image-wrapper,
      .page-1-gim__promotion-image-wrapper,
      .page-1-gim__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  