
    :root {
      --primary-color: #0056b3;
      --secondary-color: #007bff;
      --accent-color: #28a745;
      --text-color: #333;
      --light-bg: #f8f9fa;
      --dark-bg: #e9ecef;
      --border-color: #dee2e6;
    }

    .page-globe-599-plan-with-device {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      padding-top: var(--header-offset, 122px); /* Fallback for body padding */
    }

    .page-globe-599-plan-with-device__hero-section {
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
      color: white;
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 70px; /* Decorative padding-top after body offset */
    }

    @media (max-width: 768px) {
      .page-globe-599-plan-with-device__hero-section {
        padding: 50px 15px;
        padding-top: 60px; /* Decorative padding-top after body offset */
      }
    }

    .page-globe-599-plan-with-device__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: 700;
    }

    .page-globe-599-plan-with-device__hero-subtitle {
      font-size: 1.3em;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    .page-globe-599-plan-with-device__hero-cta {
      display: inline-block;
      background-color: var(--accent-color);
      color: white;
      padding: 12px 28px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .page-globe-599-plan-with-device__hero-cta:hover {
      background-color: #218838;
    }

    .page-globe-599-plan-with-device__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-globe-599-plan-with-device__section--light {
      background-color: var(--light-bg);
    }

    .page-globe-599-plan-with-device__section--dark {
      background-color: var(--dark-bg);
    }

    .page-globe-599-plan-with-device__section-title {
      font-size: 2.2em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
    }

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

    .page-globe-599-plan-with-device__feature-card {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .page-globe-599-plan-with-device__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .page-globe-599-plan-with-device__feature-icon {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 5px;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .page-globe-599-plan-with-device__feature-icon {
        max-width: 100%;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    .page-globe-599-plan-with-device__feature-title {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-globe-599-plan-with-device__feature-description {
      font-size: 1em;
      color: var(--text-color);
      text-align: left;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-globe-599-plan-with-device__device-item {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-globe-599-plan-with-device__device-item:hover {
      transform: translateY(-3px);
    }

    .page-globe-599-plan-with-device__device-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      border-bottom: 1px solid var(--border-color);
    }

    @media (max-width: 768px) {
      .page-globe-599-plan-with-device__device-image {
        max-width: 100%;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    .page-globe-599-plan-with-device__device-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-globe-599-plan-with-device__device-name {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-globe-599-plan-with-device__device-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-globe-599-plan-with-device__device-price {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--accent-color);
    }

    .page-globe-599-plan-with-device__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--primary-color);
      color: white;
    }

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

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

    .page-globe-599-plan-with-device__button {
      background-color: var(--accent-color);
      color: white;
      padding: 14px 32px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .page-globe-599-plan-with-device__button:hover {
      background-color: #218838;
    }

    .page-globe-599-plan-with-device__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-globe-599-plan-with-device__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-globe-599-plan-with-device__faq-item {
      background-color: white;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    @media (max-width: 768px) {
      .page-globe-599-plan-with-device__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

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

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

    .page-globe-599-plan-with-device__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-globe-599-plan-with-device__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-globe-599-plan-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);
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    @media (max-width: 768px) {
      .page-globe-599-plan-with-device__hero-title {
        font-size: 2em;
      }
      .page-globe-599-plan-with-device__hero-subtitle {
        font-size: 1em;
      }
      .page-globe-599-plan-with-device__section-title {
        font-size: 1.8em;
      }
      .page-globe-599-plan-with-device__cta-title {
        font-size: 2em;
      }
      .page-globe-599-plan-with-device__cta-description {
        font-size: 1em;
      }
      .page-globe-599-plan-with-device__feature-card,
      .page-globe-599-plan-with-device__device-item {
        padding: 20px;
      }
      .page-globe-599-plan-with-device__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }
      .page-globe-599-plan-with-device__faq-answer {
        padding: 0 20px;
      }
      .page-globe-599-plan-with-device__faq-item.active .page-globe-599-plan-with-device__faq-answer {
        padding: 15px 20px !important;
      }
    }
  