
    /* Global styles for the page-globe-sim-plan-599 scope */
    .page-globe-sim-plan-599 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px;
    }

    /* Hero Section */
    .page-globe-sim-plan-599__hero-section {
      position: relative;
      width: 100%;
      height: 450px; /* Adjusted for mobile view */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Decorative padding, body padding-top handles header offset */
      box-sizing: border-box;
    }

    .page-globe-sim-plan-599__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      max-width: 100%;
      height: auto;
    }

    .page-globe-sim-plan-599__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-globe-sim-plan-599__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
    }

    .page-globe-sim-plan-599__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-globe-sim-plan-599__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-globe-sim-plan-599__cta-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-globe-sim-plan-599__cta-button:hover {
      background-color: #0056b3;
    }

    /* Content Sections */
    .page-globe-sim-plan-599__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 25px;
    }

    .page-globe-sim-plan-599__section-title {
      font-size: 2.2em;
      color: #2c3e50;
      margin-bottom: 25px;
      text-align: center;
      border-bottom: 2px solid #007bff;
      padding-bottom: 10px;
      display: inline-block;
      width: auto;
      margin-left: auto;
      margin-right: auto;
    }

    .page-globe-sim-plan-599__section-paragraph {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Features Grid */
    .page-globe-sim-plan-599__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-globe-sim-plan-599__feature-card {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-globe-sim-plan-599__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-globe-sim-plan-599__feature-icon {
      width: 80px; /* Minimum 200x200 requirement, but this is an icon *container* */
      height: 80px; /* The actual image will be the placeholder */
      margin-bottom: 15px;
      background-color: #007bff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5em;
      color: #fff;
      max-width: 100%;
      height: auto;
    }

    .page-globe-sim-plan-599__feature-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      max-width: 100%;
      height: auto;
    }

    .page-globe-sim-plan-599__feature-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-globe-sim-plan-599__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* How It Works Section */
    .page-globe-sim-plan-599__steps-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
      padding: 0;
      list-style: none;
    }

    .page-globe-sim-plan-599__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #fff;
      padding: 20px;
      border-left: 5px solid #007bff;
      border-radius: 5px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-globe-sim-plan-599__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      margin-right: 15px;
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #007bff;
      border-radius: 50%;
    }

    .page-globe-sim-plan-599__step-content h3 {
      font-size: 1.2em;
      color: #2c3e50;
      margin-top: 0;
      margin-bottom: 8px;
    }

    .page-globe-sim-plan-599__step-content p {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 0;
    }

    /* Image Showcase */
    .page-globe-sim-plan-599__image-showcase {
      text-align: center;
      margin-top: 30px;
    }

    .page-globe-sim-plan-599__showcase-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-top: 20px;
    }

    /* FAQ Section */
    .page-globe-sim-plan-599__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 25px auto 0;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-globe-sim-plan-599__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-globe-sim-plan-599__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-globe-sim-plan-599__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-globe-sim-plan-599__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      font-size: 1.1em;
      color: #2c3e50;
      font-weight: bold;
      user-select: none;
      transition: color 0.3s ease;
    }

    .page-globe-sim-plan-599__faq-question:hover {
      color: #007bff;
    }

    .page-globe-sim-plan-599__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
    }

    .page-globe-sim-plan-599__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
      color: #007bff;
    }

    .page-globe-sim-plan-599__faq-item.active .page-globe-sim-plan-599__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-globe-sim-plan-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: #666;
      font-size: 0.95em;
      box-sizing: border-box;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-globe-sim-plan-599__hero-section {
        height: 350px;
      }

      .page-globe-sim-plan-599__hero-title {
        font-size: 2em;
      }

      .page-globe-sim-plan-599__hero-subtitle {
        font-size: 1em;
      }

      .page-globe-sim-plan-599__section {
        padding: 30px 15px;
        margin-top: 20px;
      }

      .page-globe-sim-plan-599__section-title {
        font-size: 1.8em;
      }

      .page-globe-sim-plan-599__section-paragraph {
        font-size: 1em;
      }

      .page-globe-sim-plan-599__features-grid {
        grid-template-columns: 1fr;
      }

      .page-globe-sim-plan-599__feature-card {
        padding: 20px;
        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;
        word-break: break-word !important;
      }

      .page-globe-sim-plan-599__steps-list {
        gap: 15px;
      }

      .page-globe-sim-plan-599__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        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;
        word-break: break-word !important;
      }

      .page-globe-sim-plan-599__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-globe-sim-plan-599__faq-section {
        padding: 30px 15px;
      }

      .page-globe-sim-plan-599__faq-question {
        font-size: 1em;
        padding: 12px 0;
      }

      .page-globe-sim-plan-599__faq-question h3 {
        font-size: 1em;
      }

      .page-globe-sim-plan-599__faq-answer {
        padding: 15px 10px !important;
        font-size: 0.9em;
      }

      /* Ensure all images are responsive */
      .page-globe-sim-plan-599 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-globe-sim-plan-599__hero-image,
      .page-globe-sim-plan-599__feature-icon img,
      .page-globe-sim-plan-599__showcase-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-globe-sim-plan-599__hero-title {
        font-size: 1.6em;
      }

      .page-globe-sim-plan-599__hero-subtitle {
        font-size: 0.9em;
      }

      .page-globe-sim-plan-599__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-globe-sim-plan-599__section-title {
        font-size: 1.6em;
      }
    }
  