.page-nustargame-customer-service {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small decorative padding, assuming body handles var(--header-offset) */
    }

    .page-nustargame-customer-service__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-nustargame-customer-service__hero-section {
      position: relative;
      width: 100%;
      height: 600px; /* Adjust height as needed */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-nustargame-customer-service__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100%; /* Responsive image */
    }

    .page-nustargame-customer-service__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2;
    }

    .page-nustargame-customer-service__hero-content {
      position: relative;
      z-index: 3;
      max-width: 800px;
      padding: 20px;
    }

    .page-nustargame-customer-service__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
      color: #fff; /* Ensure good contrast */
    }

    .page-nustargame-customer-service__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      color: #fff; /* Ensure good contrast */
    }

    .page-nustargame-customer-service__hero-cta-button {
      display: inline-block;
      background-color: #e44d26; /* Example: orange/red for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-nustargame-customer-service__hero-cta-button:hover {
      background-color: #ff6a00;
    }

    /* Section Titles */
    .page-nustargame-customer-service__introduction-title,
    .page-nustargame-customer-service__quick-access-title,
    .page-nustargame-customer-service__games-title,
    .page-nustargame-customer-service__promotions-title,
    .page-nustargame-customer-service__security-title,
    .page-nustargame-customer-service__faq-title,
    .page-nustargame-customer-service__blog-title {
      font-size: 2.5em;
      text-align: center;
      margin-bottom: 40px;
      color: #2c3e50; /* Darker color for headings */
    }

    /* Introduction Section */
    .page-nustargame-customer-service__introduction-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .page-nustargame-customer-service__introduction-text {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-nustargame-customer-service__introduction-features {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
    }

    .page-nustargame-customer-service__feature-item {
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      text-align: center;
      padding: 25px;
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-nustargame-customer-service__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%; /* Responsive image */
    }

    .page-nustargame-customer-service__feature-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #e44d26;
    }

    .page-nustargame-customer-service__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* Quick Access Section */
    .page-nustargame-customer-service__quick-access-section {
      padding: 60px 0;
      background-color: #e44d26;
      color: #fff;
    }

    .page-nustargame-customer-service__quick-access-title {
      color: #fff;
    }

    .page-nustargame-customer-service__quick-access-description {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 40px;
    }

    .page-nustargame-customer-service__access-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-nustargame-customer-service__access-button {
      display: inline-block;
      background-color: #ff6a00; /* Slightly different orange */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-nustargame-customer-service__access-button:hover {
      background-color: #e44d26;
      transform: translateY(-2px);
    }

    /* Games Section */
    .page-nustargame-customer-service__games-section {
      padding: 60px 0;
      background-color: #f0f0f0;
    }

    .page-nustargame-customer-service__games-description {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-nustargame-customer-service__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-nustargame-customer-service__game-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-nustargame-customer-service__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
    }

    .page-nustargame-customer-service__game-card-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #2c3e50;
      padding: 0 15px;
    }

    .page-nustargame-customer-service__game-card-text {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    .page-nustargame-customer-service__game-card-button {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-nustargame-customer-service__game-card-button:hover {
      background-color: #ff6a00;
    }

    /* Promotions Section */
    .page-nustargame-customer-service__promotions-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .page-nustargame-customer-service__promotions-description {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-nustargame-customer-service__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-nustargame-customer-service__promo-card {
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-nustargame-customer-service__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
    }

    .page-nustargame-customer-service__promo-card-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #2c3e50;
      padding: 0 15px;
    }

    .page-nustargame-customer-service__promo-card-text {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    .page-nustargame-customer-service__promo-card-button {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-nustargame-customer-service__promo-card-button:hover {
      background-color: #ff6a00;
    }

    /* Security Section */
    .page-nustargame-customer-service__security-section {
      padding: 60px 0;
      background-color: #2c3e50; /* Dark background */
      color: #fff;
    }

    .page-nustargame-customer-service__security-title {
      color: #fff;
    }

    .page-nustargame-customer-service__security-description {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-nustargame-customer-service__security-features {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 50px;
    }

    .page-nustargame-customer-service__security-item {
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      text-align: center;
      padding: 25px;
      background-color: #34495e; /* Slightly lighter dark for cards */
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-nustargame-customer-service__security-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%; /* Responsive image */
    }

    .page-nustargame-customer-service__security-item-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #e44d26;
    }

    .page-nustargame-customer-service__security-item-text {
      font-size: 1em;
      color: #ccc;
    }

    .page-nustargame-customer-service__contact-options {
      text-align: center;
      margin-top: 50px;
    }

    .page-nustargame-customer-service__contact-title {
      font-size: 2em;
      margin-bottom: 20px;
      color: #fff;
    }

    .page-nustargame-customer-service__contact-text {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #ccc;
    }

    .page-nustargame-customer-service__social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-nustargame-customer-service__social-button {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-nustargame-customer-service__social-button:hover {
      background-color: #ff6a00;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-nustargame-customer-service__faq-section {
      padding: 60px 0;
      background-color: #f8f8f8;
    }

    .page-nustargame-customer-service__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-nustargame-customer-service__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-nustargame-customer-service__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #eee;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-nustargame-customer-service__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-nustargame-customer-service__faq-question-text {
      font-size: 1.2em;
      margin: 0; /* Reset default h3 margin */
      color: #2c3e50;
      pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-nustargame-customer-service__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: #e44d26;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-nustargame-customer-service__faq-item.active .page-nustargame-customer-service__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-nustargame-customer-service__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
    }

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

    .page-nustargame-customer-service__faq-answer p {
      margin: 0;
    }

    /* Blog Section */
    .page-nustargame-customer-service__blog-section {
      padding: 60px 0;
      background-color: #eee;
    }

    .page-nustargame-customer-service__blog-description {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-nustargame-customer-service__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-nustargame-customer-service__blog-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-nustargame-customer-service__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-nustargame-customer-service__blog-card-title {
      font-size: 1.3em;
      margin: 15px 15px 10px 15px;
      color: #2c3e50;
    }

    .page-nustargame-customer-service__blog-card-title a {
      color: inherit;
      text-decoration: none;
    }

    .page-nustargame-customer-service__blog-card-title a:hover {
      text-decoration: underline;
      color: #e44d26;
    }

    .page-nustargame-customer-service__blog-card-excerpt {
      font-size: 0.95em;
      color: #555;
      margin: 0 15px 20px 15px;
    }

    .page-nustargame-customer-service__blog-card-link {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.85em;
      margin-left: 15px;
      margin-bottom: 15px;
      transition: background-color 0.3s ease;
    }

    .page-nustargame-customer-service__blog-card-link:hover {
      background-color: #ff6a00;
    }

    /* General image responsiveness */
    .page-nustargame-customer-service img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }


    /* Responsive Design - Mobile */
    @media (max-width: 768px) {
      .page-nustargame-customer-service__container {
        padding: 15px;
      }

      .page-nustargame-customer-service__hero-section {
        height: 400px;
      }

      .page-nustargame-customer-service__hero-title {
        font-size: 2.2em;
      }

      .page-nustargame-customer-service__hero-description {
        font-size: 1em;
      }

      .page-nustargame-customer-service__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-nustargame-customer-service__introduction-title,
      .page-nustargame-customer-service__quick-access-title,
      .page-nustargame-customer-service__games-title,
      .page-nustargame-customer-service__promotions-title,
      .page-nustargame-customer-service__security-title,
      .page-nustargame-customer-service__faq-title,
      .page-nustargame-customer-service__blog-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }

      .page-nustargame-customer-service__introduction-features,
      .page-nustargame-customer-service__game-categories,
      .page-nustargame-customer-service__promo-grid,
      .page-nustargame-customer-service__security-features,
      .page-nustargame-customer-service__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-nustargame-customer-service__feature-item,
      .page-nustargame-customer-service__security-item {
        max-width: 100%;
        min-width: unset;
        box-sizing: border-box !important;
      }

      .page-nustargame-customer-service__access-links {
        flex-direction: column;
        align-items: center;
      }

      .page-nustargame-customer-service__access-button {
        width: 100%;
        max-width: 300px; /* Limit button width for better appearance */
        box-sizing: border-box;
      }

      .page-nustargame-customer-service__game-card,
      .page-nustargame-customer-service__promo-card,
      .page-nustargame-customer-service__blog-card {
        max-width: 100%;
        box-sizing: border-box !important;
      }

      .page-nustargame-customer-service__faq-question {
        padding: 12px 15px;
      }

      .page-nustargame-customer-service__faq-question-text {
        font-size: 1em;
      }

      .page-nustargame-customer-service__faq-answer {
        padding: 0 15px;
      }

      .page-nustargame-customer-service__faq-item.active .page-nustargame-customer-service__faq-answer {
        padding: 15px !important;
      }

      .page-nustargame-customer-service__social-links {
        flex-direction: column;
        align-items: center;
      }

      .page-nustargame-customer-service__social-button {
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
      }

      /* List items responsiveness check */
      .page-nustargame-customer-service__introduction-features > .page-nustargame-customer-service__feature-item,
      .page-nustargame-customer-service__security-features > .page-nustargame-customer-service__security-item,
      .page-nustargame-customer-service__game-categories > .page-nustargame-customer-service__game-card,
      .page-nustargame-customer-service__promo-grid > .page-nustargame-customer-service__promo-card,
      .page-nustargame-customer-service__blog-grid > .page-nustargame-customer-service__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px; /* Adjust padding to prevent content from touching edges */
        padding-right: 15px;
      }
      .page-nustargame-customer-service__introduction-features,
      .page-nustargame-customer-service__security-features,
      .page-nustargame-customer-service__game-categories,
      .page-nustargame-customer-service__promo-grid,
      .page-nustargame-customer-service__blog-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-nustargame-customer-service__introduction-text,
      .page-nustargame-customer-service__quick-access-description,
      .page-nustargame-customer-service__games-description,
      .page-nustargame-customer-service__promotions-description,
      .page-nustargame-customer-service__security-description,
      .page-nustargame-customer-service__blog-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 375px) {
        .page-nustargame-customer-service__hero-title {
            font-size: 1.8em;
        }
        .page-nustargame-customer-service__introduction-title,
        .page-nustargame-customer-service__quick-access-title,
        .page-nustargame-customer-service__games-title,
        .page-nustargame-customer-service__promotions-title,
        .page-nustargame-customer-service__security-title,
        .page-nustargame-customer-service__faq-title,
        .page-nustargame-customer-service__blog-title {
            font-size: 1.6em;
        }
        .page-nustargame-customer-service__contact-title {
            font-size: 1.5em;
        }
        .page-nustargame-customer-service__faq-question-text {
            font-size: 0.9em;
        }
    }