
    /* Page-specific CSS for gplan-plus-599 */
    :root {
      --page-gplan-plus-599-primary-color: #007bff; /* Blue */
      --page-gplan-plus-599-secondary-color: #6c757d; /* Gray */
      --page-gplan-plus-599-text-color: #333;
      --page-gplan-plus-599-light-bg: #f8f9fa;
      --page-gplan-plus-599-dark-bg: #343a40;
      --page-gplan-plus-599-white: #fff;
      --page-gplan-plus-599-border-color: #dee2e6;
    }

    .page-gplan-plus-599 {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-gplan-plus-599-text-color);
      background-color: var(--page-gplan-plus-599-light-bg);
      padding-bottom: 40px; /* Ensure space before footer */
    }

    .page-gplan-plus-599__hero-section {
      position: relative;
      width: 100%;
      height: 450px; /* Adjust height for hero image */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--page-gplan-plus-599-white);
      padding-top: 10px; /* Small top padding, assuming body handles header offset */
      box-sizing: border-box;
    }

    .page-gplan-plus-599__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100%; /* Ensure image is responsive */
    }

    .page-gplan-plus-599__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

    .page-gplan-plus-599__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
      margin: 0 auto;
    }

    .page-gplan-plus-599__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-gplan-plus-599-white);
    }

    .page-gplan-plus-599__hero-description {
      font-size: 1.2em;
      line-height: 1.5;
      margin-bottom: 25px;
    }

    .page-gplan-plus-599__container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-gplan-plus-599__section {
      background-color: var(--page-gplan-plus-599-white);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-gplan-plus-599__section-title {
      font-size: 2em;
      color: var(--page-gplan-plus-599-primary-color);
      margin-bottom: 25px;
      text-align: center;
    }

    .page-gplan-plus-599__content-paragraph {
      margin-bottom: 15px;
      text-align: justify;
    }

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

    .page-gplan-plus-599__feature-item {
      background-color: var(--page-gplan-plus-599-light-bg);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      border: 1px solid var(--page-gplan-plus-599-border-color);
      box-sizing: border-box;
    }

    .page-gplan-plus-599__feature-icon {
      width: 100px; /* Minimum 200x200px, so 100px width for display is fine */
      height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-gplan-plus-599__feature-description {
      font-size: 0.95em;
      color: var(--page-gplan-plus-599-secondary-color);
    }

    .page-gplan-plus-599__call-to-action {
      text-align: center;
      margin-top: 40px;
    }

    .page-gplan-plus-599__button {
      background-color: var(--page-gplan-plus-599-primary-color);
      color: var(--page-gplan-plus-599-white);
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block; /* For button-like div */
      text-decoration: none; /* In case it's an anchor, though requirements say no links */
    }

    .page-gplan-plus-599__button:hover {
      background-color: #0056b3;
    }

    /* FAQ Section Styles */
    .page-gplan-plus-599__faq-section {
      background-color: var(--page-gplan-plus-599-white);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-gplan-plus-599__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-gplan-plus-599__faq-item {
      border-bottom: 1px solid var(--page-gplan-plus-599-border-color);
      margin-bottom: 10px;
      padding-bottom: 10px;
      box-sizing: border-box;
    }

    .page-gplan-plus-599__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-gplan-plus-599__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-gplan-plus-599-text-color);
      transition: color 0.3s ease;
      user-select: none;
    }

    .page-gplan-plus-599__faq-question:hover {
      color: var(--page-gplan-plus-599-primary-color);
    }

    .page-gplan-plus-599__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

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

    .page-gplan-plus-599__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: var(--page-gplan-plus-599-secondary-color);
      font-size: 0.95em;
    }

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

    .page-gplan-plus-599__faq-item.active .page-gplan-plus-599__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-gplan-plus-599__hero-section {
        height: 300px;
      }

      .page-gplan-plus-599__hero-title {
        font-size: 2em;
      }

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

      .page-gplan-plus-599__container {
        margin: 20px auto;
        padding: 0 15px;
      }

      .page-gplan-plus-599__section {
        padding: 20px;
        margin-bottom: 20px;
      }

      .page-gplan-plus-599__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
      }

      .page-gplan-plus-599__features-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      /* List item mobile responsiveness */
      .page-gplan-plus-599__features-grid,
      .page-gplan-plus-599__faq-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-gplan-plus-599__feature-item,
      .page-gplan-plus-599__faq-item {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding-left: 15px !important; /* Adjust padding to avoid excessive inner spacing */
          padding-right: 15px !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }

      .page-gplan-plus-599__faq-question {
        font-size: 1em;
        padding: 10px 0;
      }

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

      .page-gplan-plus-599__faq-answer {
        padding: 15px 15px !important; /* Adjust for mobile */
      }

      .page-gplan-plus-599__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      /* Image responsiveness */
      .page-gplan-plus-599__hero-image,
      .page-gplan-plus-599__feature-icon {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-gplan-plus-599__hero-section {
        height: 250px;
      }
      .page-gplan-plus-599__hero-title {
        font-size: 1.8em;
      }
      .page-gplan-plus-599__hero-description {
        font-size: 0.9em;
      }
    }
  