
    :root {
      --page-gplan-plus-biz-599-primary-color: #007bff; /* Blue */
      --page-gplan-plus-biz-599-secondary-color: #6c757d; /* Gray */
      --page-gplan-plus-biz-599-accent-color: #28a745; /* Green */
      --page-gplan-plus-biz-599-light-bg: #f8f9fa; /* Light gray */
      --page-gplan-plus-biz-599-dark-text: #212529; /* Dark gray */
      --page-gplan-plus-biz-599-white: #ffffff;
      --page-gplan-plus-biz-599-border-color: #dee2e6;
    }

    .page-gplan-plus-biz-599 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-gplan-plus-biz-599-dark-text);
      background-color: var(--page-gplan-plus-biz-599-light-bg);
      padding-bottom: 40px; /* Ensure space before footer */
    }

    /* Small top padding for the main content area, assuming shared.css handles body padding-top */
    .page-gplan-plus-biz-599__hero-section {
      padding-top: 10px; /* Small top padding for visual separation */
      background-color: var(--page-gplan-plus-biz-599-primary-color);
      color: var(--page-gplan-plus-biz-599-white);
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-gplan-plus-biz-599__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 123, 255, 0.8), rgba(0, 123, 255, 0.6));
      z-index: 1;
    }

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

    .page-gplan-plus-biz-599__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

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

    .page-gplan-plus-biz-599__hero-subtitle {
      font-size: 1.25em;
      margin-bottom: 30px;
      font-weight: 300;
      color: var(--page-gplan-plus-biz-599-white);
    }

    .page-gplan-plus-biz-599__button {
      display: inline-block;
      background-color: var(--page-gplan-plus-biz-599-accent-color);
      color: var(--page-gplan-plus-biz-599-white);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-gplan-plus-biz-599__button:hover {
      background-color: #218838; /* Darker green */
    }

    .page-gplan-plus-biz-599__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--page-gplan-plus-biz-599-white);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-gplan-plus-biz-599__section:first-of-type {
      margin-top: 30px; /* Adjust spacing after hero */
    }

    .page-gplan-plus-biz-599__section-title {
      font-size: 2.2em;
      color: var(--page-gplan-plus-biz-599-primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-gplan-plus-biz-599__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-gplan-plus-biz-599-accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-gplan-plus-biz-599__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-gplan-plus-biz-599__feature-card {
      background-color: var(--page-gplan-plus-biz-599-light-bg);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-gplan-plus-biz-599-border-color);
    }

    .page-gplan-plus-biz-599__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    }

    .page-gplan-plus-biz-599__feature-icon {
      margin-bottom: 20px;
      width: 100%;
      max-width: 250px;
      height: auto;
      border-radius: 8px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

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

    .page-gplan-plus-biz-599__steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-gplan-plus-biz-599__step-item {
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      background-color: var(--page-gplan-plus-biz-599-white);
      border: 1px solid var(--page-gplan-plus-biz-599-border-color);
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
      position: relative;
      padding-top: 60px;
    }

    .page-gplan-plus-biz-599__step-number {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-gplan-plus-biz-599-primary-color);
      color: var(--page-gplan-plus-biz-599-white);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: 700;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

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

    .page-gplan-plus-biz-599__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto 30px auto;
      background-color: var(--page-gplan-plus-biz-599-white);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

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

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

    .page-gplan-plus-biz-599__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px;
      background-color: var(--page-gplan-plus-biz-599-light-bg);
      border-radius: 5px;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-gplan-plus-biz-599__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-gplan-plus-biz-599__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-gplan-plus-biz-599-dark-text);
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

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

    .page-gplan-plus-biz-599__faq-item.active .page-gplan-plus-biz-599__faq-toggle {
      transform: rotate(45deg); /* Changes + to X or similar */
    }

    .page-gplan-plus-biz-599__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--page-gplan-plus-biz-599-white);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-gplan-plus-biz-599-secondary-color);
      text-align: left;
    }

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

    .page-gplan-plus-biz-599__cta-section {
      background-color: var(--page-gplan-plus-biz-599-primary-color);
      color: var(--page-gplan-plus-biz-599-white);
      text-align: center;
      padding: 50px 20px;
      margin-top: 30px;
      border-radius: 8px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-gplan-plus-biz-599__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .page-gplan-plus-biz-599__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-gplan-plus-biz-599__hero-title {
        font-size: 2.2em;
      }

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

      .page-gplan-plus-biz-599__section-title {
        font-size: 1.8em;
      }

      .page-gplan-plus-biz-599__grid {
        grid-template-columns: 1fr;
      }

      .page-gplan-plus-biz-599__feature-card {
        padding: 20px;
      }

      .page-gplan-plus-biz-599__steps {
        flex-direction: column;
        align-items: center;
      }

      .page-gplan-plus-biz-599__step-item {
        max-width: 100%;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
      }

      .page-gplan-plus-biz-599__faq-question {
        padding: 10px;
      }

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

      .page-gplan-plus-biz-599__faq-answer {
        padding: 0 10px;
      }

      .page-gplan-plus-biz-599__faq-item.active .page-gplan-plus-biz-599__faq-answer {
        padding: 15px 10px !important;
      }

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

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

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

      /* List item specific mobile styles */
      .page-gplan-plus-biz-599__feature-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-biz-599__feature-list li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px !important; /* Adjust padding as needed */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  