
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow for 599jili brand */
      --secondary-color: #333333; /* Dark grey */
      --accent-color: #007bff; /* Blue for highlights */
      --text-color: #ffffff; /* White text */
      --dark-bg: #1a1a1a; /* Dark background */
      --light-text: #e0e0e0; /* Light grey text */
      --button-hover-color: #e6b800;
      --border-radius-small: 8px;
      --border-radius-medium: 12px;
      --padding-section: 60px 20px;
      --padding-item: 20px;
      --gap-medium: 20px;
    }

    .page-all-new-gplan-plus-599 {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-bg);
      line-height: 1.6;
    }

    .page-all-new-gplan-plus-599__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Hero Section */
    .page-all-new-gplan-plus-599__hero-section {
      position: relative;
      padding: 10px 0 60px; /* Small decorative padding-top, body handles main offset */
      background-color: #000;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 500px;
      box-sizing: border-box;
    }

    .page-all-new-gplan-plus-599__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.5;
      z-index: 0;
    }

    .page-all-new-gplan-plus-599__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 20px;
    }

    .page-all-new-gplan-plus-599__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-all-new-gplan-plus-599__hero-description {
      font-size: 1.2em;
      color: var(--light-text);
      margin-bottom: 30px;
    }

    .page-all-new-gplan-plus-599__hero-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 15px 30px;
      border-radius: var(--border-radius-medium);
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-all-new-gplan-plus-599__hero-button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-3px);
    }

    /* Section General Styling */
    .page-all-new-gplan-plus-599__section {
      padding: var(--padding-section);
      text-align: center;
    }

    .page-all-new-gplan-plus-599__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-all-new-gplan-plus-599__section-subtitle {
      font-size: 1.5em;
      color: var(--light-text);
      margin-bottom: 30px;
    }

    /* Features Section */
    .page-all-new-gplan-plus-599__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--gap-medium);
      margin-top: 40px;
    }

    .page-all-new-gplan-plus-599__feature-item {
      background-color: #2a2a2a;
      padding: var(--padding-item);
      border-radius: var(--border-radius-medium);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-all-new-gplan-plus-599__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-all-new-gplan-plus-599__feature-image {
      max-width: 100%;
      height: auto;
      border-radius: var(--border-radius-small);
      margin-bottom: 15px;
    }

    .page-all-new-gplan-plus-599__feature-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-all-new-gplan-plus-599__feature-description {
      font-size: 1em;
      color: var(--light-text);
    }

    /* How to Avail Section */
    .page-all-new-gplan-plus-599__how-to-avail-section {
      background-color: #222222;
    }

    .page-all-new-gplan-plus-599__step-list {
      display: flex;
      flex-direction: column;
      gap: var(--gap-medium);
      list-style: none;
      padding: 0;
      margin-top: 40px;
    }

    .page-all-new-gplan-plus-599__step-item {
      display: flex;
      align-items: center;
      background-color: #2a2a2a;
      padding: var(--padding-item);
      border-radius: var(--border-radius-medium);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      text-align: left;
      flex-wrap: wrap; /* Allow wrapping on small screens */
      box-sizing: border-box;
    }

    .page-all-new-gplan-plus-599__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--primary-color);
      background-color: var(--secondary-color);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-all-new-gplan-plus-599__step-text {
      flex-grow: 1;
      font-size: 1.1em;
      color: var(--light-text);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-all-new-gplan-plus-599__faq-section {
      background-color: var(--dark-bg);
      text-align: center;
    }

    .page-all-new-gplan-plus-599__faq-container {
      max-width: 900px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-all-new-gplan-plus-599__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: var(--border-radius-medium);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-all-new-gplan-plus-599__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      cursor: pointer;
      color: var(--primary-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-all-new-gplan-plus-599__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-all-new-gplan-plus-599__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-all-new-gplan-plus-599__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-all-new-gplan-plus-599__faq-item.active .page-all-new-gplan-plus-599__faq-toggle {
      transform: rotate(45deg);
    }

    .page-all-new-gplan-plus-599__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--light-text);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      background-color: #2a2a2a;
      text-align: left;
      font-size: 1em;
    }

    .page-all-new-gplan-plus-599__faq-item.active .page-all-new-gplan-plus-599__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    /* Call to Action Section */
    .page-all-new-gplan-plus-599__cta-section {
      background: linear-gradient(135deg, #1a1a1a, #333333);
      padding: var(--padding-section);
      text-align: center;
    }

    .page-all-new-gplan-plus-599__cta-title {
      font-size: 2.2em;
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .page-all-new-gplan-plus-599__cta-description {
      font-size: 1.1em;
      color: var(--light-text);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-all-new-gplan-plus-599__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 15px 30px;
      border-radius: var(--border-radius-medium);
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-all-new-gplan-plus-599__cta-button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-3px);
    }

    /* General Image Responsiveness */
    .page-all-new-gplan-plus-599 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-all-new-gplan-plus-599__hero-section {
        min-height: 400px;
        padding-bottom: 40px;
      }

      .page-all-new-gplan-plus-599__hero-title {
        font-size: 2.5em;
      }

      .page-all-new-gplan-plus-599__hero-description {
        font-size: 1em;
      }

      .page-all-new-gplan-plus-599__section-title {
        font-size: 2em;
      }

      .page-all-new-gplan-plus-599__section-subtitle {
        font-size: 1.2em;
      }

      .page-all-new-gplan-plus-599__features-grid {
        grid-template-columns: 1fr;
      }

      .page-all-new-gplan-plus-599__step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
      }

      .page-all-new-gplan-plus-599__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-all-new-gplan-plus-599__step-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-all-new-gplan-plus-599__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-all-new-gplan-plus-599__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-all-new-gplan-plus-599__faq-question h3 {
        font-size: 1.1em;
      }

      .page-all-new-gplan-plus-599__faq-answer {
        padding: 15px !important;
        font-size: 0.95em;
      }

      .page-all-new-gplan-plus-599__cta-title {
        font-size: 1.8em;
      }

      .page-all-new-gplan-plus-599__cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-all-new-gplan-plus-599__hero-title {
        font-size: 2em;
      }
      .page-all-new-gplan-plus-599__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-all-new-gplan-plus-599__section-title {
        font-size: 1.8em;
      }
      .page-all-new-gplan-plus-599__faq-question {
        padding: 10px 12px;
      }
      .page-all-new-gplan-plus-599__faq-question h3 {
        font-size: 1em;
      }
      .page-all-new-gplan-plus-599__faq-toggle {
        font-size: 1.3em;
      }
      .page-all-new-gplan-plus-599__faq-answer {
        font-size: 0.9em;
      }
    }
  