
    /* Base styles for the page */
    .page-globe-plan-599-free-phone-2025 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: 10px; /* Decorative top padding, assuming body has header offset */
    }

    /* Section styling */
    .page-globe-plan-599-free-phone-2025__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    /* Hero Section */
    .page-globe-plan-599-free-phone-2025__hero-section {
      background-color: #007bff; /* Globe blue */
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-globe-plan-599-free-phone-2025__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
    }

    .page-globe-plan-599-free-phone-2025__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-globe-plan-599-free-phone-2025__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      word-wrap: break-word; /* Ensure long titles break */
    }

    .page-globe-plan-599-free-phone-2025__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-globe-plan-599-free-phone-2025__button {
      background-color: #ffc107; /* Bright yellow */
      color: #333;
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-globe-plan-599-free-phone-2025__button:hover {
      background-color: #e0a800;
    }

    /* General content titles and text */
    .page-globe-plan-599-free-phone-2025__title {
      font-size: 2.2em;
      color: #007bff;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-globe-plan-599-free-phone-2025__subtitle {
      font-size: 1.8em;
      color: #0056b3;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-globe-plan-599-free-phone-2025__content-text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
    }

    /* List styling */
    .page-globe-plan-599-free-phone-2025__list {
      list-style: disc inside;
      margin-left: 20px;
      margin-bottom: 20px;
      padding: 0;
    }

    .page-globe-plan-599-free-phone-2025__list-item {
      margin-bottom: 10px;
      font-size: 1em;
      color: #555;
      box-sizing: border-box; /* Required for list items */
    }

    /* Image styling */
    .page-globe-plan-599-free-phone-2025__image-container {
      text-align: center;
      margin: 30px 0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: 100%; /* Required for image containers */
      max-width: 100%; /* Required for image containers */
      box-sizing: border-box; /* Required for image containers */
    }

    .page-globe-plan-599-free-phone-2025__image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px; /* Apply border-radius directly to image */
    }

    /* FAQ Section */
    .page-globe-plan-599-free-phone-2025__faq-section {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-globe-plan-599-free-phone-2025__faq-item {
      border-bottom: 1px solid #eee;
    }

    .page-globe-plan-599-free-phone-2025__faq-item:last-child {
      border-bottom: none;
    }

    .page-globe-plan-599-free-phone-2025__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 15px;
      cursor: pointer;
      background-color: #f0f0f0;
      color: #333;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-globe-plan-599-free-phone-2025__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-globe-plan-599-free-phone-2025__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      text-align: left;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click events */
    }

    .page-globe-plan-599-free-phone-2025__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click events */
    }

    .page-globe-plan-599-free-phone-2025__faq-item.active .page-globe-plan-599-free-phone-2025__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar effect for active state */
    }

    .page-globe-plan-599-free-phone-2025__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: #555;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-globe-plan-599-free-phone-2025__section {
        padding: 30px 15px;
      }

      .page-globe-plan-599-free-phone-2025__hero-section {
        padding: 40px 15px;
      }

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

      .page-globe-plan-599-free-phone-2025__hero-subtitle {
        font-size: 1.1em;
      }

      .page-globe-plan-599-free-phone-2025__title {
        font-size: 1.8em;
      }

      .page-globe-plan-599-free-phone-2025__subtitle {
        font-size: 1.5em;
      }

      .page-globe-plan-599-free-phone-2025__content-text {
        font-size: 1em;
      }

      .page-globe-plan-599-free-phone-2025__list {
        margin-left: 0 !important; /* Ensure no extra margin for lists */
        padding: 0 !important; /* Ensure no extra padding for lists */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-globe-plan-599-free-phone-2025__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px; /* Add some padding for bullet point visibility */
        word-wrap: break-word !important; /* Ensure text wraps within item */
        overflow-wrap: break-word !important;
      }

      .page-globe-plan-599-free-phone-2025__image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-globe-plan-599-free-phone-2025__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding: 0 10px; /* Adjust padding to prevent overflow */
      }

      .page-globe-plan-599-free-phone-2025__faq-question {
        padding: 15px 10px;
      }

      .page-globe-plan-599-free-phone-2025__faq-question h3 {
        font-size: 1.1em;
      }

      .page-globe-plan-599-free-phone-2025__faq-answer {
        padding: 15px 10px;
      }
    }

    @media (max-width: 480px) {
      .page-globe-plan-599-free-phone-2025__hero-title {
        font-size: 1.8em;
      }
      .page-globe-plan-599-free-phone-2025__hero-subtitle {
        font-size: 1em;
      }
      .page-globe-plan-599-free-phone-2025__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  