
    /* Base styles for the page container */
    .page-gplan-599 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #fff;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 40px;
      /* Fallback for header offset if body doesn't handle it */
      padding-top: var(--header-offset, 122px);
    }

    /* Hero Section */
    .page-gplan-599__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 10px 20px 0; /* Decorative top padding */
      box-sizing: border-box;
    }

    .page-gplan-599__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6);
    }

    .page-gplan-599__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-gplan-599__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #e94560;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-gplan-599__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #c0c0c0;
    }

    .page-gplan-599__action-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #0f3460;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none; /* Ensure it looks like a button */
    }

    .page-gplan-599__action-button:hover {
      background-color: #e94560;
    }

    /* Section General Styles */
    .page-gplan-599__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-gplan-599__section-title {
      font-size: 2.8em;
      color: #e94560;
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-gplan-599__section-description {
      font-size: 1.1em;
      color: #c0c0c0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Benefits Grid */
    .page-gplan-599__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-gplan-599__benefit-item {
      background-color: #0f3460;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-gplan-599__benefit-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-gplan-599__benefit-icon {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      object-fit: cover;
      max-height: 250px; /* Limit height to maintain aspect ratio for varying image sizes */
      box-sizing: border-box;
    }

    .page-gplan-599__benefit-title {
      font-size: 1.8em;
      color: #e94560;
      margin-bottom: 15px;
    }

    .page-gplan-599__benefit-description {
      font-size: 1em;
      color: #c0c0c0;
    }

    /* How It Works Section */
    .page-gplan-599__steps-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
      list-style: none; /* Remove default list styling */
      padding: 0; /* Remove default padding */
      margin: 0 auto;
      max-width: 800px;
    }

    .page-gplan-599__step-item {
      background-color: #0f3460;
      padding: 25px;
      border-radius: 10px;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-gplan-599__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #e94560;
      min-width: 50px;
      text-align: center;
    }

    .page-gplan-599__step-content {
      flex-grow: 1;
    }

    .page-gplan-599__step-title {
      font-size: 1.6em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-gplan-599__step-description {
      font-size: 1em;
      color: #c0c0c0;
    }

    /* Promotions Section */
    .page-gplan-599__promo-link {
      color: #e94560;
      text-decoration: underline;
      font-weight: bold;
    }
    
    .page-gplan-599__promo-link:hover {
      color: #ff7b92;
    }

    /* FAQ Section */
    .page-gplan-599__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
      padding: 0;
      list-style: none;
    }

    .page-gplan-599__faq-item {
      background-color: #0f3460;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-gplan-599__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #0f3460;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: #fff;
      transition: background-color 0.3s ease;
    }

    .page-gplan-599__faq-question:hover {
      background-color: #1a1a2e;
    }

    .page-gplan-599__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #e94560;
      pointer-events: none; /* Prevent h3 from blocking click events */
    }

    .page-gplan-599__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #e94560;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click events */
    }

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

    .page-gplan-599__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #c0c0c0;
      background-color: #1a1a2e;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-gplan-599__hero-title {
        font-size: 3em;
      }
      .page-gplan-599__hero-subtitle {
        font-size: 1.3em;
      }
      .page-gplan-599__section-title {
        font-size: 2.2em;
      }
      .page-gplan-599__benefit-title {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .page-gplan-599__hero-section {
        min-height: 350px;
        height: 50vh;
      }
      .page-gplan-599__hero-title {
        font-size: 2.5em;
      }
      .page-gplan-599__hero-subtitle {
        font-size: 1.1em;
      }
      .page-gplan-599__action-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-gplan-599__section {
        padding: 40px 15px;
      }
      .page-gplan-599__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }
      .page-gplan-599__section-description {
        font-size: 0.95em;
      }

      /* List items responsive */
      .page-gplan-599__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-gplan-599__benefit-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }
      .page-gplan-599__benefit-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-gplan-599__steps-list {
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-gplan-599__step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-gplan-599__step-number {
        margin-bottom: 10px;
      }
      .page-gplan-599__step-content {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-gplan-599__step-title {
        font-size: 1.4em;
      }
      .page-gplan-599__step-description {
        font-size: 0.9em;
      }

      /* Image responsive */
      .page-gplan-599__hero-background,
      .page-gplan-599__benefit-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-gplan-599__hero-background-container,
      .page-gplan-599__benefit-icon-container { /* Assuming a container for images if needed */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      /* FAQ Responsive */
      .page-gplan-599__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-gplan-599__faq-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-gplan-599__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-gplan-599__faq-question h3 {
        font-size: 1.1em;
      }
      .page-gplan-599__faq-toggle {
        font-size: 1.5em;
      }
      .page-gplan-599__faq-answer {
        padding: 15px 20px !important;
        font-size: 0.95em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-gplan-599__hero-title {
        font-size: 2em;
      }
      .page-gplan-599__hero-subtitle {
        font-size: 0.9em;
      }
      .page-gplan-599__action-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-gplan-599__section-title {
        font-size: 1.8em;
      }
      .page-gplan-599__benefit-title {
        font-size: 1.3em;
      }
      .page-gplan-599__benefit-description {
        font-size: 0.9em;
      }
      .page-gplan-599__step-title {
        font-size: 1.2em;
      }
      .page-gplan-599__step-description {
        font-size: 0.85em;
      }
      .page-gplan-599__faq-question h3 {
        font-size: 1em;
      }
      .page-gplan-599__faq-answer {
        font-size: 0.9em;
      }
    }
  