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

    /* Hero Section */
    .page-globe-599__hero-section {
      position: relative;
      background-color: #007bff;
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px; /* Adjusted padding-top to avoid double offset */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

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

    .page-globe-599__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

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

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

    .page-globe-599__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-globe-599__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-globe-599__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-top: 30px;
      text-align: center;
    }

    .page-globe-599__section:nth-of-type(odd) {
      background-color: #f0f8ff;
    }

    .page-globe-599__section-title {
      font-size: 2.2em;
      color: #0056b3;
      margin-bottom: 30px;
      text-align: center;
    }

    .page-globe-599__section-paragraph {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-globe-599__feature-item {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-globe-599__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-globe-599__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 50%;
      object-fit: cover;
    }

    .page-globe-599__feature-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-globe-599__feature-description {
      font-size: 1em;
      color: #666;
      text-align: center;
    }

    /* Payment Methods */
    .page-globe-599__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-globe-599__payment-item {
      background-color: #e9ecef;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      box-sizing: border-box;
      width: 100%; /* Ensure items take full width in grid */
      max-width: 200px; /* Limit max width for larger screens */
    }

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

    .page-globe-599__payment-logo {
      max-width: 120px;
      height: auto;
      display: block;
      margin: 0 auto 10px;
      object-fit: contain;
    }

    .page-globe-599__payment-name {
      font-size: 0.9em;
      font-weight: bold;
      color: #333;
    }

    /* FAQ Section */
    .page-globe-599__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 30px auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

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

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

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

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

    .page-globe-599__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-globe-599__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      width: 20px;
      text-align: center;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-globe-599__faq-item.active .page-globe-599__faq-toggle {
      transform: rotate(45deg);
    }

    .page-globe-599__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      font-size: 1em;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

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

    /* General utility classes */
    .page-globe-599__text-center {
      text-align: center;
    }

    .page-globe-599__mb-40 {
      margin-bottom: 40px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-globe-599__hero-section {
        min-height: 300px;
        padding-top: 10px; /* Adjusted padding-top for mobile */
      }

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

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

      .page-globe-599__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

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

      .page-globe-599__section-paragraph {
        font-size: 0.95em;
      }

      .page-globe-599__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-globe-599__feature-item {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-globe-599__payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-globe-599__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-globe-599__payment-logo {
        max-width: 100px;
      }

      .page-globe-599__faq-section {
        padding: 30px 15px;
        margin-top: 20px;
      }

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

      .page-globe-599__faq-answer {
        font-size: 0.95em;
        padding: 15px 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

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

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

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

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