
    :root {
      --primary-color: #007bff; /* A vibrant blue for accents */
      --secondary-color: #6c757d; /* A subtle grey for secondary elements */
      --text-color: #333;
      --heading-color: #212529;
      --background-light: #f8f9fa;
      --background-white: #ffffff;
      --border-color: #dee2e6;
      --shadow-light: rgba(0, 0, 0, 0.1);
      --button-hover-color: #0056b3;
    }

    .page-globe-plan-599-with-device {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-light);
      padding-bottom: 40px;
    }

    .page-globe-plan-599-with-device__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-globe-plan-599-with-device__hero-section {
      position: relative;
      padding: 10px 0 60px 0; /* Small padding-top as body handles header offset */
      color: #fff;
      text-align: center;
      overflow: hidden;
      margin-bottom: 40px;
      background-color: #343a40; /* Fallback background */
    }

    .page-globe-plan-599-with-device__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.6;
    }

    .page-globe-plan-599-with-device__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .page-globe-plan-599-with-device__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #fff;
      text-shadow: 2px 2px 4px var(--shadow-light);
    }

    .page-globe-plan-599-with-device__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e9ecef;
    }

    .page-globe-plan-599-with-device__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 15px 30px;
      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-plan-599-with-device__button:hover {
      background-color: var(--button-hover-color);
    }

    .page-globe-plan-599-with-device__section {
      background-color: var(--background-white);
      padding: 60px 20px;
      margin-bottom: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 12px var(--shadow-light);
      box-sizing: border-box;
    }

    .page-globe-plan-599-with-device__section-title {
      font-size: 2.5em;
      color: var(--heading-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-globe-plan-599-with-device__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }

    .page-globe-plan-599-with-device__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-globe-plan-599-with-device__feature-grid,
    .page-globe-plan-599-with-device__device-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-globe-plan-599-with-device__feature-item,
    .page-globe-plan-599-with-device__device-card {
      background-color: var(--background-light);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-globe-plan-599-with-device__feature-item:hover,
    .page-globe-plan-599-with-device__device-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px var(--shadow-light);
    }

    .page-globe-plan-599-with-device__feature-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-globe-plan-599-with-device__feature-title,
    .page-globe-plan-599-with-device__device-name {
      font-size: 1.5em;
      color: var(--heading-color);
      margin-bottom: 15px;
    }

    .page-globe-plan-599-with-device__device-image {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-globe-plan-599-with-device__device-specs {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
      font-size: 0.95em;
      color: var(--secondary-color);
    }

    .page-globe-plan-599-with-device__device-specs li {
      margin-bottom: 8px;
      padding-left: 10px;
      position: relative;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-globe-plan-599-with-device__device-specs li::before {
      content: '•';
      color: var(--primary-color);
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    .page-globe-plan-599-with-device__cta-section {
      text-align: center;
      background-color: var(--primary-color);
      color: #fff;
      padding: 60px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px var(--shadow-light);
    }

    .page-globe-plan-599-with-device__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #fff;
    }

    .page-globe-plan-599-with-device__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-globe-plan-599-with-device__faq-section {
      background-color: var(--background-white);
      padding: 60px 20px;
      margin-bottom: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 12px var(--shadow-light);
      box-sizing: border-box;
    }

    .page-globe-plan-599-with-device__faq-item {
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: var(--background-light);
      transition: background-color 0.3s ease;
    }

    .page-globe-plan-599-with-device__faq-item.active {
      background-color: #e2f0ff; /* Lighter shade for active item */
    }

    .page-globe-plan-599-with-device__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--heading-color);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-globe-plan-599-with-device__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-globe-plan-599-with-device__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      text-align: left;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-globe-plan-599-with-device__faq-toggle {
      font-size: 1.8em;
      margin-left: 20px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      color: var(--primary-color);
      line-height: 1;
    }

    .page-globe-plan-599-with-device__faq-item.active .page-globe-plan-599-with-device__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-globe-plan-599-with-device__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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(--text-color);
      box-sizing: border-box;
      text-align: justify;
    }

    .page-globe-plan-599-with-device__faq-item.active .page-globe-plan-599-with-device__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-globe-plan-599-with-device__hero-title {
        font-size: 2.5em;
      }
      .page-globe-plan-599-with-device__hero-subtitle {
        font-size: 1.3em;
      }
      .page-globe-plan-599-with-device__section-title {
        font-size: 2em;
      }
      .page-globe-plan-599-with-device__cta-title {
        font-size: 2.2em;
      }
      .page-globe-plan-599-with-device__cta-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-globe-plan-599-with-device__container {
        padding: 15px;
      }
      .page-globe-plan-599-with-device__hero-section {
        padding: 10px 0 40px 0;
      }
      .page-globe-plan-599-with-device__hero-content {
        padding: 30px 15px;
      }
      .page-globe-plan-599-with-device__hero-title {
        font-size: 2em;
      }
      .page-globe-plan-599-with-device__hero-subtitle {
        font-size: 1.1em;
      }
      .page-globe-plan-599-with-device__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-globe-plan-599-with-device__section {
        padding: 40px 15px;
        margin-bottom: 30px;
      }
      .page-globe-plan-599-with-device__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-globe-plan-599-with-device__text-content {
        font-size: 1em;
      }
      .page-globe-plan-599-with-device__feature-grid,
      .page-globe-plan-599-with-device__device-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item specific responsiveness */
      .page-globe-plan-599-with-device__feature-grid > *,
      .page-globe-plan-599-with-device__device-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-globe-plan-599-with-device__device-specs {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-globe-plan-599-with-device__device-specs li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding for bullet */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }


      .page-globe-plan-599-with-device__cta-section {
        padding: 40px 15px;
      }
      .page-globe-plan-599-with-device__cta-title {
        font-size: 1.8em;
      }
      .page-globe-plan-599-with-device__cta-description {
        font-size: 1em;
      }
      .page-globe-plan-599-with-device__faq-section {
        padding: 40px 15px;
      }
      .page-globe-plan-599-with-device__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-globe-plan-599-with-device__faq-question h3 {
        font-size: 1.1em;
      }
      .page-globe-plan-599-with-device__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
      }
      .page-globe-plan-599-with-device__faq-answer {
        padding: 15px 20px;
      }
    }

    @media (max-width: 480px) {
      .page-globe-plan-599-with-device__hero-title {
        font-size: 1.8em;
      }
      .page-globe-plan-599-with-device__hero-subtitle {
        font-size: 1em;
      }
      .page-globe-plan-599-with-device__section-title {
        font-size: 1.5em;
      }
      .page-globe-plan-599-with-device__cta-title {
        font-size: 1.6em;
      }
      .page-globe-plan-599-with-device__cta-description {
        font-size: 0.9em;
      }
      .page-globe-plan-599-with-device__faq-question {
        font-size: 1em;
      }
      .page-globe-plan-599-with-device__faq-question h3 {
        font-size: 1em;
      }
    }
  