
    /* Base styles for the page */
    .page-g666winfree {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for the floating button */
    }

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

    .page-g666winfree__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-g666winfree__section--dark {
      background-color: #0f0f1d;
    }

    .page-g666winfree__hero-section {
      position: relative;
      padding-top: 10px; /* Space for fixed header */
      padding-bottom: 60px;
      background-color: #0f0f1d;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 400px;
    }

    .page-g666winfree__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Darken background for text readability */
    }

    .page-g666winfree__hero-content {
      position: relative;
      z-index: 2;
      color: #ffffff;
      padding: 20px;
      max-width: 900px;
    }

    .page-g666winfree__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fddb00; /* Vibrant yellow for highlight */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-g666winfree__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-g666winfree__button {
      display: inline-block;
      background-color: #fddb00;
      color: #1a1a2e;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-g666winfree__button:hover {
      background-color: #ffeb3b;
      transform: translateY(-2px);
    }

    .page-g666winfree__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #e91e63; /* Pink for attention */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: page-g666winfree__pulse 2s infinite;
      border: none;
      cursor: pointer;
      white-space: nowrap; /* Prevent text wrapping */
      text-decoration: none; /* If it's an anchor */
    }

    .page-g666winfree__floating-button:hover {
      background-color: #d81b60;
      animation: none;
    }

    @keyframes page-g666winfree__pulse {
      0% {
        transform: translateX(-50%) scale(1);
      }
      50% {
        transform: translateX(-50%) scale(1.05);
      }
      100% {
        transform: translateX(-50%) scale(1);
      }
    }

    .page-g666winfree__title {
      font-size: 2.2em;
      color: #fddb00;
      margin-bottom: 25px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-g666winfree__subtitle {
      font-size: 1.8em;
      color: #ffffff;
      margin-top: 30px;
      margin-bottom: 20px;
    }

    .page-g666winfree__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #c0c0c0;
      text-align: left;
    }

    .page-g666winfree__highlight {
      color: #fddb00;
    }

    .page-g666winfree__image-wrapper {
      margin: 30px auto;
      max-width: 800px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-g666winfree__image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
      box-sizing: border-box; /* Ensure padding/border included */
    }

    .page-g666winfree__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
      text-align: left;
    }

    .page-g666winfree__grid-item {
      background-color: #2a2a4a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Important for responsive grid items */
    }

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

    .page-g666winfree__grid-item-icon {
      width: 100%; /* Ensure full width */
      max-width: 100%; /* Responsive image */
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
      box-sizing: border-box;
    }

    .page-g666winfree__grid-item-title {
      font-size: 1.4em;
      color: #fddb00;
      margin-bottom: 10px;
    }

    .page-g666winfree__grid-item-description {
      color: #c0c0c0;
      font-size: 0.95em;
    }

    .page-g666winfree__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      text-align: left;
      width: 100%; /* Ensure container takes full width */
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-g666winfree__list-item {
      background-color: #2a2a4a;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      font-size: 1.05em;
      color: #e0e0e0;
      width: 100%; /* Ensure full width for list items */
      max-width: 100%;
      box-sizing: border-box; /* Critical for list item responsiveness */
      word-wrap: break-word !important; /* Text wrapping */
      overflow-wrap: break-word !important; /* Text wrapping */
    }

    .page-g666winfree__list-item::before {
      content: '✓';
      color: #fddb00;
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    /* FAQ Styles */
    .page-g666winfree__faq-section {
      padding: 50px 0;
      background-color: #0f0f1d;
    }

    .page-g666winfree__faq-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-g666winfree__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-g666winfree__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #3b3b5b;
      color: #fddb00;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-g666winfree__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #fddb00;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-g666winfree__faq-question:hover {
      background-color: #4c4c7a;
    }

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

    .page-g666winfree__faq-item.active .page-g666winfree__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-g666winfree__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      color: #c0c0c0;
      font-size: 1.05em;
      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-g666winfree__faq-item.active .page-g666winfree__faq-answer {
      max-height: 2000px !important; /* Sufficiently large height */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-g666winfree__hero-title {
        font-size: 2em;
      }

      .page-g666winfree__hero-description {
        font-size: 1em;
      }

      .page-g666winfree__title {
        font-size: 1.8em;
      }

      .page-g666winfree__subtitle {
        font-size: 1.5em;
      }

      .page-g666winfree__text-content {
        font-size: 1em;
      }

      .page-g666winfree__grid {
        grid-template-columns: 1fr;
      }

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

      .page-g666winfree__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-g666winfree__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px; /* Adjust padding for smaller screens */
      }

      .page-g666winfree__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-g666winfree__image-wrapper {
        margin: 20px auto;
        padding: 0 10px; /* Add some horizontal padding to wrapper */
      }

      .page-g666winfree__floating-button {
        font-size: 1em;
        padding: 12px 20px;
        bottom: 15px;
      }

      .page-g666winfree__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-g666winfree__faq-question h3 {
        font-size: 1.1em;
      }
      .page-g666winfree__faq-answer {
        padding: 0 20px;
      }
      .page-g666winfree__faq-item.active .page-g666winfree__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-g666winfree__hero-title {
        font-size: 1.6em;
      }
      .page-g666winfree__title {
        font-size: 1.5em;
      }
      .page-g666winfree__subtitle {
        font-size: 1.3em;
      }
      .page-g666winfree__floating-button {
        width: calc(100% - 40px); /* Make button wider on very small screens */
        border-radius: 8px;
        bottom: 10px;
      }
    }
  