
    .page-kingph-customer-service {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't set body padding-top */
    }

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

    .page-kingph-customer-service__hero-section {
      background: linear-gradient(135deg, #0056b3, #007bff);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      margin-bottom: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      padding-top: 10px; /* Small decorative top padding, body handles main offset */
    }

    .page-kingph-customer-service__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: 700;
      color: #fff;
    }

    .page-kingph-customer-service__hero-subtitle {
      font-size: 1.3em;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0.9;
    }

    .page-kingph-customer-service__content-section {
      background-color: #ffffff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-kingph-customer-service__section-title {
      font-size: 2em;
      color: #0056b3;
      margin-bottom: 25px;
      text-align: center;
      font-weight: 600;
    }

    .page-kingph-customer-service__section-paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
      color: #555;
    }

    .page-kingph-customer-service__contact-methods {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-kingph-customer-service__method-card {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 30px;
      text-align: center;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-kingph-customer-service__method-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .page-kingph-customer-service__card-icon {
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-customer-service__card-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-kingph-customer-service__card-description {
      color: #666;
      font-size: 0.95em;
    }

    .page-kingph-customer-service__promotion-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 25px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-kingph-customer-service__promotion-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-kingph-customer-service__faq-section {
      background-color: #ffffff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-kingph-customer-service__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-kingph-customer-service__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-kingph-customer-service__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-kingph-customer-service__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      font-size: 1.15em;
      color: #0056b3;
      font-weight: 600;
      user-select: none;
      transition: background-color 0.2s ease;
    }

    .page-kingph-customer-service__faq-question:hover {
      background-color: #f0f8ff;
      border-radius: 5px;
      padding-left: 10px;
      padding-right: 10px;
    }

    .page-kingph-customer-service__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-kingph-customer-service__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: #ffc107;
      font-weight: bold;
    }

    .page-kingph-customer-service__faq-item.active .page-kingph-customer-service__faq-toggle {
      transform: rotate(45deg);
    }

    .page-kingph-customer-service__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.4s ease;
      color: #555;
      font-size: 1em;
      text-align: justify;
    }

    .page-kingph-customer-service__faq-item.active .page-kingph-customer-service__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-kingph-customer-service__image-wrapper {
      margin-bottom: 20px;
      text-align: center;
    }

    .page-kingph-customer-service__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-kingph-customer-service__hero-title {
        font-size: 2.2em;
      }

      .page-kingph-customer-service__hero-subtitle {
        font-size: 1.1em;
      }

      .page-kingph-customer-service__section-title {
        font-size: 1.8em;
      }

      .page-kingph-customer-service__method-card {
        flex: 1 1 calc(50% - 20px);
        min-width: unset;
      }
    }

    @media (max-width: 768px) {
      .page-kingph-customer-service__hero-section {
        padding: 40px 15px;
      }

      .page-kingph-customer-service__hero-title {
        font-size: 1.8em;
      }

      .page-kingph-customer-service__hero-subtitle {
        font-size: 1em;
      }

      .page-kingph-customer-service__content-section,
      .page-kingph-customer-service__faq-section {
        padding: 25px 15px;
      }

      .page-kingph-customer-service__section-title {
        font-size: 1.5em;
      }

      .page-kingph-customer-service__section-paragraph {
        font-size: 0.95em;
      }

      .page-kingph-customer-service__contact-methods {
        flex-direction: column;
        gap: 15px;
      }

      .page-kingph-customer-service__method-card {
        flex: 1 1 100%;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kingph-customer-service__faq-question {
        font-size: 1.05em;
        padding: 12px 0;
      }

      .page-kingph-customer-service__faq-answer {
        padding: 15px 10px;
        font-size: 0.95em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

      .page-kingph-customer-service__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-kingph-customer-service__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-customer-service__hero-title {
        font-size: 1.5em;
      }

      .page-kingph-customer-service__hero-subtitle {
        font-size: 0.9em;
      }

      .page-kingph-customer-service__section-title {
        font-size: 1.3em;
      }

      .page-kingph-customer-service__promotion-button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }
  