
    :root {
      --page-78win-primary-color: #FFD700; /* Gold */
      --page-78win-secondary-color: #1A202C; /* Dark Grey */
      --page-78win-accent-color: #DC143C; /* Crimson */
      --page-78win-light-bg: #F8F8F8;
      --page-78win-white-bg: #FFFFFF;
      --page-78win-text-color: #333333;
      --page-78win-heading-color: #1A202C;
    }

    .page-78win {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-78win-text-color);
      background-color: var(--page-78win-light-bg);
      padding: 20px 0;
    }

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

    .page-78win-section {
      background-color: var(--page-78win-white-bg);
      padding: 30px 20px;
      margin-bottom: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-78win-section-hero {
      background: linear-gradient(135deg, #1A202C, #333333);
      color: #FFFFFF;
      text-align: center;
      padding: 60px 20px;
      border-radius: 0;
      margin-bottom: 0;
      box-shadow: none;
    }

    .page-78win-section-hero h1 {
      color: var(--page-78win-primary-color);
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-78win-section-hero p {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: #E0E0E0;
    }

    .page-78win-btn {
      display: inline-block;
      background-color: var(--page-78win-primary-color);
      color: var(--page-78win-secondary-color);
      padding: 12px 25px;
      border-radius: 50px;
      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-78win-btn:hover {
      background-color: #FFC107; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-78win-btn-secondary {
      background-color: var(--page-78win-accent-color);
      color: #FFFFFF;
    }

    .page-78win-btn-secondary:hover {
      background-color: #C00F2E;
      transform: translateY(-2px);
    }

    .page-78win h2 {
      color: var(--page-78win-heading-color);
      font-size: 2em;
      margin-bottom: 20px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-78win h3 {
      color: var(--page-78win-heading-color);
      font-size: 1.5em;
      margin-top: 25px;
      margin-bottom: 15px;
      border-left: 5px solid var(--page-78win-primary-color);
      padding-left: 10px;
    }

    .page-78win-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 20px;
    }

    .page-78win-card {
      background-color: var(--page-78win-light-bg);
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-78win-card:hover {
      transform: translateY(-5px);
    }

    .page-78win-card img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 15px;
    }

    .page-78win-card h4 {
      color: var(--page-78win-heading-color);
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .page-78win-card p {
      font-size: 0.95em;
      color: #555555;
    }

    .page-78win-list {
      list-style: none;
      padding: 0;
      margin-top: 15px;
    }

    .page-78win-list li {
      background-color: var(--page-78win-light-bg);
      margin-bottom: 10px;
      padding: 12px 15px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      font-size: 1em;
      color: var(--page-78win-text-color);
    }

    .page-78win-list li::before {
      content: '✓';
      color: var(--page-78win-primary-color);
      font-weight: bold;
      margin-right: 10px;
    }

    .page-78win-steps {
      counter-reset: step-counter;
      list-style: none;
      padding: 0;
    }

    .page-78win-steps li {
      counter-increment: step-counter;
      margin-bottom: 20px;
      padding-left: 50px;
      position: relative;
      min-height: 40px;
      display: flex;
      align-items: center;
      background-color: var(--page-78win-light-bg);
      border-radius: 8px;
      padding: 15px 20px 15px 50px;
    }

    .page-78win-steps li::before {
      content: counter(step-counter);
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      background-color: var(--page-78win-primary-color);
      color: var(--page-78win-secondary-color);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-78win-steps li strong {
      color: var(--page-78win-heading-color);
      font-size: 1.1em;
    }

    .page-78win-faq .page-78win-faq-item {
      background-color: var(--page-78win-light-bg);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-78win-faq .page-78win-faq-question {
      padding: 15px 20px;
      background-color: var(--page-78win-white-bg);
      border-bottom: 1px solid #EEEEEE;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: var(--page-78win-heading-color);
      transition: background-color 0.3s ease;
    }

    .page-78win-faq .page-78win-faq-question:hover {
      background-color: #F0F0F0;
    }

    .page-78win-faq .page-78win-faq-question::after {
      content: '+';
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }

    .page-78win-faq .page-78win-faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-78win-faq .page-78win-faq-answer {
      padding: 15px 20px;
      color: #555555;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
    }

    .page-78win-floating-ad {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-78win-accent-color);
      color: #FFFFFF;
      padding: 10px 15px;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: page-78win-pulse 1.5s infinite;
    }

    .page-78win-floating-ad a {
      color: #FFFFFF;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95em;
    }

    .page-78win-floating-ad .icon {
      font-size: 1.5em;
      line-height: 1;
    }

    @keyframes page-78win-pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-78win-section-hero h1 {
        font-size: 2em;
      }
      .page-78win h2 {
        font-size: 1.8em;
      }
      .page-78win h3 {
        font-size: 1.3em;
      }
      .page-78win-grid {
        grid-template-columns: 1fr;
      }
      .page-78win-steps li {
        padding-left: 45px;
      }
      .page-78win-steps li::before {
        left: 10px;
        width: 28px;
        height: 28px;
        font-size: 1em;
      }
      .page-78win-floating-ad {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.85em;
      }
      .page-78win-floating-ad .icon {
        font-size: 1.2em;
      }
    }

    @media (max-width: 480px) {
      .page-78win-section-hero {
        padding: 40px 15px;
      }
      .page-78win-section-hero h1 {
        font-size: 1.6em;
      }
      .page-78win-section-hero p {
        font-size: 0.95em;
      }
      .page-78win-btn {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-78win h2 {
        font-size: 1.5em;
      }
      .page-78win-section {
        padding: 20px 15px;
      }
    }
  