
    :root {
      --primary-color: #e44d26; /* A vibrant color for highlights, similar to online casino themes */
      --secondary-color: #333;
      --background-light: #f5f5f5;
      --background-dark: #222;
      --text-light: #fff;
      --text-dark: #333;
      --border-color: #ddd;
      --accent-blue: #007bff; /* For links/buttons */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--background-light);
      margin: 0;
      padding: 0;
    }

    .page-gfiber-599 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-gfiber-599__hero-section {
      background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
      color: var(--text-light);
      text-align: center;
      padding: 80px 20px 60px;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 30px;
      padding-top: 90px; /* Adjust for potential header offset, plus some decorative top padding */
    }
    @media (max-width: 768px) {
      .page-gfiber-599__hero-section {
        padding-top: 70px; /* Slightly less padding on mobile */
        padding-bottom: 40px;
      }
    }


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

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

    .page-gfiber-599__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
      color: var(--text-light);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-gfiber-599__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      opacity: 0.9;
      color: var(--text-light);
    }

    .page-gfiber-599__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--text-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .page-gfiber-599__cta-button:hover {
      background-color: #ff6f42; /* Slightly lighter primary color */
      transform: translateY(-2px);
    }

    .page-gfiber-599__section {
      background-color: var(--text-light);
      padding: 60px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-gfiber-599__section-dark {
      background-color: var(--background-dark);
      color: var(--text-light);
      padding: 60px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .page-gfiber-599__section-title {
      font-size: 2.5em;
      color: var(--secondary-color);
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }
    .page-gfiber-599__section-dark .page-gfiber-599__section-title {
      color: var(--text-light);
    }

    .page-gfiber-599__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-gfiber-599__feature-card {
      background-color: var(--background-light);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: var(--text-dark);
    }
    .page-gfiber-599__section-dark .page-gfiber-599__feature-card {
      background-color: #3a3a3a;
      color: var(--text-light);
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .page-gfiber-599__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .page-gfiber-599__section-dark .page-gfiber-599__feature-card:hover {
      box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    }

    .page-gfiber-599__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
      display: block; /* Ensure it respects margin auto */
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .page-gfiber-599__feature-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }
    .page-gfiber-599__section-dark .page-gfiber-599__feature-title {
      color: #ffd700; /* Gold for dark background */
    }

    .page-gfiber-599__feature-description {
      font-size: 1em;
      color: var(--secondary-color);
    }
    .page-gfiber-599__section-dark .page-gfiber-599__feature-description {
      color: var(--text-light);
    }

    .page-gfiber-599__content-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
      margin-top: 40px;
    }

    @media (min-width: 768px) {
      .page-gfiber-599__content-grid {
        grid-template-columns: 1fr 1fr;
      }
      .page-gfiber-599__content-grid--reverse {
        grid-template-areas: "image content";
      }
      .page-gfiber-599__content-grid--reverse .page-gfiber-599__content-text {
        grid-area: content;
      }
      .page-gfiber-599__content-grid--reverse .page-gfiber-599__content-image-wrapper {
        grid-area: image;
      }
    }

    .page-gfiber-599__content-image-wrapper {
      text-align: center;
    }

    .page-gfiber-599__content-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      display: block;
      margin: 0 auto;
    }

    .page-gfiber-599__content-text {
      padding: 20px;
    }

    .page-gfiber-599__content-heading {
      font-size: 2em;
      color: var(--primary-color);
      margin-bottom: 20px;
      font-weight: bold;
    }
    .page-gfiber-599__section-dark .page-gfiber-599__content-heading {
      color: #ffd700;
    }

    .page-gfiber-599__content-paragraph {
      margin-bottom: 15px;
      color: var(--secondary-color);
    }
    .page-gfiber-599__section-dark .page-gfiber-599__content-paragraph {
      color: var(--text-light);
    }

    .page-gfiber-599__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--background-dark);
      color: var(--text-light);
      margin-bottom: 30px;
      border-radius: 10px;
    }

    .page-gfiber-599__cta-heading {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--text-light);
    }

    .page-gfiber-599__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    /* FAQ Section Styles */
    .page-gfiber-599__faq-section {
      background-color: var(--text-light);
      padding: 60px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-gfiber-599__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
    }

    .page-gfiber-599__faq-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }

    .page-gfiber-599__faq-item.active {
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .page-gfiber-599__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #e9ecef; /* Light gray for question background */
      color: var(--secondary-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-gfiber-599__faq-question:hover {
      background-color: #dee2e6;
    }

    .page-gfiber-599__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-gfiber-599__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--primary-color);
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-gfiber-599__faq-item.active .page-gfiber-599__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' directly */
      color: var(--primary-color);
    }

    .page-gfiber-599__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: var(--text-dark);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-gfiber-599__hero-title {
        font-size: 2.2em;
      }
      .page-gfiber-599__hero-subtitle {
        font-size: 1.1em;
      }
      .page-gfiber-599__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-gfiber-599__section-title {
        font-size: 2em;
      }
      .page-gfiber-599__content-heading {
        font-size: 1.8em;
      }
      .page-gfiber-599__cta-heading {
        font-size: 2em;
      }
      .page-gfiber-599__cta-description {
        font-size: 1em;
      }
      .page-gfiber-599__faq-question {
        padding: 15px 15px;
        font-size: 1em;
      }
      .page-gfiber-599__faq-question h3 {
        font-size: 1em;
      }
      .page-gfiber-599__faq-toggle {
        font-size: 1.3em;
      }
      .page-gfiber-599__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }

      /* List item specific responsive rules */
      .page-gfiber-599__features-grid {
        grid-template-columns: 1fr; /* Stack features on mobile */
      }
      .page-gfiber-599__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Reduce padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-gfiber-599__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-gfiber-599__faq-item {
        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;
      }

      /* Image responsive rules */
      .page-gfiber-599__hero-background-image,
      .page-gfiber-599__feature-icon,
      .page-gfiber-599__content-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  