
    :root {
      --page-f1686-primary: #FFD700; /* Gold */
      --page-f1686-secondary: #000; /* Black */
      --page-f1686-text-light: #fff;
      --page-f1686-text-dark: #333;
      --page-f1686-bg-dark: #1a1a1a;
      --page-f1686-bg-light: #f9f9f9;
      --page-f1686-accent: #FF4500; /* OrangeRed */
    }

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

    .page-f1686 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-f1686__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-f1686__section--dark {
      background-color: var(--page-f1686-bg-dark);
      color: var(--page-f1686-text-light);
    }

    .page-f1686__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-f1686-primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: bold;
    }

    .page-f1686__section--dark .page-f1686__section-title {
      color: var(--page-f1686-primary);
    }

    .page-f1686__section-description {
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-f1686__hero-section {
      background-size: cover;
      background-position: center;
      color: var(--page-f1686-text-light);
      padding: 10px 0 80px; /* Adjusted for header offset, 10px decorative top padding */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 600px; /* Ensure sufficient height for hero */
    }

    .page-f1686__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: brightness(0.6); /* Dim the background image */
    }

    .page-f1686__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      text-align: center;
    }

    .page-f1686__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-f1686-primary);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-f1686__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #eee;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-f1686__button-group {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-f1686__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-f1686-primary);
      color: var(--page-f1686-secondary);
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      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-f1686__button:hover {
      background-color: var(--page-f1686-accent);
      transform: translateY(-3px);
      color: #fff;
    }

    .page-f1686__button--secondary {
      background-color: transparent;
      border: 2px solid var(--page-f1686-primary);
      color: var(--page-f1686-primary);
    }

    .page-f1686__button--secondary:hover {
      background-color: var(--page-f1686-primary);
      color: var(--page-f1686-secondary);
    }

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

    .page-f1686__feature-card {
      background-color: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-f1686__feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .page-f1686__feature-image-wrapper {
      width: 100%;
      max-width: 300px; /* Constrain image width within card */
      height: 200px;
      margin-bottom: 20px;
      overflow: hidden;
      border-radius: 8px;
    }

    .page-f1686__feature-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    .page-f1686__feature-title {
      font-size: 1.5em;
      color: var(--page-f1686-secondary);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-f1686__feature-description {
      color: #666;
      font-size: 0.95em;
    }

    .page-f1686__promotions-section .page-f1686__section-description {
      color: var(--page-f1686-text-light);
    }

    .page-f1686__promotion-list {
      list-style: none;
      padding: 0;
      margin: 40px auto;
      max-width: 800px;
      text-align: left;
    }

    .page-f1686__promotion-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      margin-bottom: 15px;
      padding: 20px 25px;
      display: flex;
      align-items: center;
      gap: 15px;
      color: var(--page-f1686-text-light);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-f1686__promotion-item::before {
      content: '✨';
      font-size: 1.5em;
      color: var(--page-f1686-primary);
    }

    .page-f1686__promotion-text {
      font-size: 1.1em;
      font-weight: 500;
    }

    .page-f1686__image-full-width {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      margin-top: 40px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-f1686__partners-payments-section h3 {
      font-size: 1.8em;
      color: var(--page-f1686-primary);
      margin-top: 50px;
      margin-bottom: 20px;
    }

    .page-f1686__providers-list,
    .page-f1686__payments-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .page-f1686__list-item {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 15px 25px;
      font-weight: bold;
      color: var(--page-f1686-secondary);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-f1686__list-item:hover {
      transform: translateY(-5px);
    }

    .page-f1686__faq-section {
      background-color: var(--page-f1686-bg-light);
    }

    .page-f1686__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-f1686__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--page-f1686-text-dark);
      transition: background-color 0.3s ease;
    }

    .page-f1686__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-f1686__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-f1686-text-dark);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-f1686__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: var(--page-f1686-primary);
    }

    .page-f1686__faq-item.active .page-f1686__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or just rotate for -) */
    }

    .page-f1686__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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;
      background-color: #fff;
      text-align: left;
    }

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

    .page-f1686__cta-section {
      background-color: var(--page-f1686-accent);
      color: var(--page-f1686-text-light);
      padding: 80px 0;
    }

    .page-f1686__cta-section .page-f1686__section-title {
      color: var(--page-f1686-text-light);
    }

    .page-f1686__cta-section .page-f1686__section-description {
      color: #eee;
    }

    .page-f1686__external-link {
      display: inline-block;
      margin-top: 30px;
      padding: 15px 30px;
      background-color: var(--page-f1686-primary);
      color: var(--page-f1686-secondary);
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-f1686__external-link:hover {
      background-color: #fff;
      transform: translateY(-3px);
      color: var(--page-f1686-accent);
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .page-f1686 {
        padding: 0 10px;
      }

      .page-f1686__section {
        padding: 40px 0;
      }

      .page-f1686__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-f1686__hero-section {
        min-height: 400px;
        padding-bottom: 60px;
      }

      .page-f1686__hero-title {
        font-size: 2.2em;
      }

      .page-f1686__hero-subtitle {
        font-size: 1.1em;
      }

      .page-f1686__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-f1686__button {
        width: 100%;
        max-width: 280px;
        font-size: 1em;
        padding: 12px 25px;
      }

      .page-f1686__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-f1686__feature-card {
        padding: 20px;
      }

      .page-f1686__feature-title {
        font-size: 1.3em;
      }

      .page-f1686__promotion-list {
        margin: 20px auto;
        padding: 0 10px;
      }

      .page-f1686__promotion-item {
        padding: 15px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        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;
      }

      .page-f1686__promotion-item::before {
        font-size: 1.2em;
      }

      .page-f1686__promotion-text {
        font-size: 1em;
      }

      .page-f1686__partners-payments-section h3 {
        font-size: 1.5em;
        margin-top: 30px;
      }

      .page-f1686__providers-list,
      .page-f1686__payments-list {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
      }

      .page-f1686__list-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;
        padding: 12px 20px;
      }

      /* FAQ mobile styles */
      .page-f1686__faq-question {
        padding: 12px 15px;
        font-size: 0.95em;
      }
      .page-f1686__faq-question h3 {
        font-size: 1em;
      }
      .page-f1686__faq-answer {
        padding: 0 15px;
      }
      .page-f1686__faq-item.active .page-f1686__faq-answer {
        padding: 15px !important;
      }
      .page-f1686__external-link {
        width: 100%;
        max-width: 280px;
        font-size: 1em;
        padding: 12px 25px;
      }
    }
  