
    :root {
      --page-789winlink__primary-color: #e44d26; /* Orange-red for action */
      --page-789winlink__secondary-color: #333; /* Dark grey for text */
      --page-789winlink__background-color: #f8f8f8; /* Light grey background */
      --page-789winlink__card-background: #fff; /* White for cards */
      --page-789winlink__text-color: #333;
      --page-789winlink__heading-color: #222;
      --page-789winlink__accent-color: #007bff; /* Blue for links/highlights */
      --page-789winlink__border-color: #eee;
    }

    .page-789winlink {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-789winlink__text-color);
      background-color: var(--page-789winlink__background-color);
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-789winlink__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-789winlink__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('[GALLERY:banner:789winlink,hero,main]') center center no-repeat;
      background-size: cover;
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px; /* Added padding-top for fixed header */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 350px;
    }

    .page-789winlink__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .page-789winlink__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-789winlink__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #fff;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-789winlink__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      line-height: 1.8;
      color: #f0f0f0;
    }

    .page-789winlink__button {
      display: inline-block;
      background-color: var(--page-789winlink__primary-color);
      color: #fff;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-789winlink__button:hover {
      background-color: #ff6f40;
      transform: translateY(-2px);
    }

    .page-789winlink__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ff0000; /* Eye-catching red */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-789winlink__pulse 2s infinite;
      border: none;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
    }

    .page-789winlink__floating-button:hover {
      background-color: #cc0000;
      animation: none;
    }

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

    .page-789winlink__title {
      font-size: 2em;
      color: var(--page-789winlink__heading-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-789winlink__title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--page-789winlink__primary-color);
      border-radius: 2px;
    }

    .page-789winlink__subtitle {
      font-size: 1.5em;
      color: var(--page-789winlink__heading-color);
      margin-bottom: 20px;
      border-left: 5px solid var(--page-789winlink__primary-color);
      padding-left: 10px;
    }

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

    .page-789winlink__card {
      background-color: var(--page-789winlink__card-background);
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-789winlink__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-789winlink__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-789winlink__border-color);
    }

    .page-789winlink__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-789winlink__card-title {
      font-size: 1.3em;
      color: var(--page-789winlink__heading-color);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-789winlink__card-description {
      font-size: 0.95em;
      color: var(--page-789winlink__text-color);
      flex-grow: 1;
    }

    .page-789winlink__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-789winlink__step-item {
      background-color: var(--page-789winlink__card-background);
      border-radius: 10px;
      padding: 20px 25px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .page-789winlink__step-number {
      background-color: var(--page-789winlink__primary-color);
      color: #fff;
      width: 35px;
      height: 35px;
      min-width: 35px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-789winlink__step-content h3 {
      margin-top: 0;
      color: var(--page-789winlink__heading-color);
      font-size: 1.2em;
      margin-bottom: 5px;
    }

    .page-789winlink__step-content p {
      margin-bottom: 0;
      font-size: 0.95em;
    }

    .page-789winlink__faq-section {
      background-color: var(--page-789winlink__card-background);
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 30px;
      margin-top: 40px;
    }

    .page-789winlink__faq-item {
      border-bottom: 1px solid var(--page-789winlink__border-color);
      padding: 15px 0;
    }

    .page-789winlink__faq-item:last-child {
      border-bottom: none;
    }

    .page-789winlink__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 5px 0;
    }

    .page-789winlink__faq-question:hover h3 {
      color: var(--page-789winlink__primary-color);
    }

    .page-789winlink__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--page-789winlink__heading-color);
      transition: color 0.3s ease;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-789winlink__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-789winlink__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
      width: 20px; /* Ensure consistent width */
      text-align: center;
    }

    .page-789winlink__faq-item.active .page-789winlink__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

    .page-789winlink__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: var(--page-789winlink__text-color);
      font-size: 0.95em;
    }

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

    .page-789winlink__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--page-789winlink__primary-color);
      color: #fff;
      margin-top: 40px;
      border-radius: 12px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-789winlink__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #fff;
      font-weight: 700;
    }

    .page-789winlink__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .page-789winlink__cta-button {
      background-color: #fff;
      color: var(--page-789winlink__primary-color);
      padding: 15px 35px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-789winlink__cta-button:hover {
      background-color: #f0f0f0;
      color: #c43c1c;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789winlink__hero-section {
        padding-top: 10px; /* Ensure padding-top for fixed header on mobile */
        min-height: 300px;
      }

      .page-789winlink__hero-title {
        font-size: 2em;
      }

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

      .page-789winlink__section {
        padding: 30px 15px;
      }

      .page-789winlink__title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-789winlink__subtitle {
        font-size: 1.3em;
      }

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

      .page-789winlink__card-image {
        height: 180px;
      }

      .page-789winlink__card-title {
        font-size: 1.2em;
      }

      .page-789winlink__floating-button {
        width: calc(100% - 40px);
        font-size: 1em;
        padding: 12px 20px;
        bottom: 15px;
      }

      .page-789winlink__cta-title {
        font-size: 1.8em;
      }

      .page-789winlink__cta-description {
        font-size: 0.95em;
      }

      .page-789winlink__cta-section {
        padding: 40px 15px;
      }

      .page-789winlink__faq-question h3 {
        font-size: 1em;
      }

      .page-789winlink__faq-toggle {
        font-size: 1.3em;
      }

      /* Force image responsiveness */
      .page-789winlink img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789winlink__card-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  