
    .page-3win-new {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-3win-new__header-brand {
      text-align: center;
      padding: 10px 0;
      background-color: #0d47a1; /* Dark blue */
      color: #fff;
      font-size: 2.5em;
      font-weight: bold;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-3win-new__hero-section {
      position: relative;
      width: 100%;
      height: 300px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Small top padding, relies on body padding for header offset */
    }

    .page-3win-new__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-3win-new__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2;
    }

    .page-3win-new__hero-content {
      position: relative;
      z-index: 3;
      max-width: 90%;
      padding: 20px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .page-3win-new__hero-title {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: #ffd700; /* Gold */
      line-height: 1.2;
    }

    .page-3win-new__hero-description {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-3win-new__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: #0d47a1; /* Dark blue */
      box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
      z-index: 1000;
    }

    .page-3win-new__floating-buttons a {
      flex: 1;
      text-align: center;
      padding: 12px 15px;
      margin: 0 5px;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      color: #fff;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-3win-new__btn-register {
      background-color: #28a745; /* Green */
    }

    .page-3win-new__btn-register:hover {
      background-color: #218838;
    }

    .page-3win-new__btn-login {
      background-color: #007bff; /* Blue */
    }

    .page-3win-new__btn-login:hover {
      background-color: #0056b3;
    }

    .page-3win-new__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-3win-new__section-title {
      text-align: center;
      font-size: 2em;
      margin-bottom: 30px;
      color: #0d47a1;
      position: relative;
      padding-bottom: 10px;
    }

    .page-3win-new__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #ffd700;
    }

    .page-3win-new__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
      align-items: stretch;
    }

    .page-3win-new__product-item {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      width: 100%;
    }

    .page-3win-new__product-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .page-3win-new__product-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .page-3win-new__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      max-width: 100%;
    }

    .page-3win-new__product-item:hover .page-3win-new__product-image {
      transform: scale(1.05);
    }

    .page-3win-new__product-name {
      font-size: 1.3em;
      font-weight: bold;
      color: #0d47a1;
      padding: 15px;
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-3win-new__about-content {
      text-align: center;
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto;
      color: #555;
    }

    .page-3win-new__about-content p {
      margin-bottom: 15px;
    }

    .page-3win-new__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-3win-new__promotion-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%;
    }

    .page-3win-new__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .page-3win-new__card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-3win-new__card-content {
      padding: 20px;
    }

    .page-3win-new__card-title {
      font-size: 1.4em;
      font-weight: bold;
      color: #0d47a1;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-3win-new__card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-3win-new__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-3win-new__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      overflow: hidden;
      box-sizing: border-box;
      width: 100%;
    }

    .page-3win-new__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      font-size: 1.15em;
      font-weight: bold;
      color: #0d47a1;
      cursor: pointer;
      user-select: none;
      background-color: #e3f2fd; /* Light blue */
      border-bottom: 1px solid #d1e7fd;
      transition: background-color 0.3s ease;
    }

    .page-3win-new__faq-question:hover {
      background-color: #bbdefb;
    }

    .page-3win-new__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevents text selection from interfering with click */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-3win-new__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
      color: #0d47a1;
    }

    .page-3win-new__faq-item.active .page-3win-new__faq-toggle {
      transform: rotate(45deg);
    }

    .page-3win-new__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: #444;
      background-color: #fff;
      border-top: 1px solid #eee;
    }

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

    .page-3win-new__faq-answer p {
      margin: 0 0 10px 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-3win-new__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #0d47a1; /* Dark blue */
      color: #fff;
    }

    .page-3win-new__cta-text {
      font-size: 1.8em;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-3win-new__download-button {
      display: inline-block;
      background-color: #ffd700; /* Gold */
      color: #0d47a1;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .page-3win-new__download-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    .page-3win-new__partner-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      justify-content: center;
      align-items: center;
      padding: 20px;
      background-color: #eee;
      border-radius: 12px;
      margin-top: 30px;
    }

    .page-3win-new__partner-logo {
      width: 100%;
      height: auto;
      max-width: 150px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      display: block;
      margin: 0 auto;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
      max-height: 250px;
      max-width: 250px;
    }

    .page-3win-new__partner-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-3win-new__header-brand {
        font-size: 2em;
      }

      .page-3win-new__hero-section {
        height: 250px;
      }

      .page-3win-new__hero-title {
        font-size: 1.8em;
      }

      .page-3win-new__hero-description {
        font-size: 1em;
      }

      .page-3win-new__floating-buttons {
        padding: 8px 0;
      }

      .page-3win-new__floating-buttons a {
        padding: 10px 8px;
        font-size: 0.9em;
        margin: 0 3px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-3win-new__section {
        padding: 30px 15px;
      }

      .page-3win-new__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }

      .page-3win-new__product-grid,
      .page-3win-new__promotion-grid {
        grid-template-columns: 1fr;
      }

      .page-3win-new__product-item,
      .page-3win-new__promotion-card,
      .page-3win-new__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;
        word-break: break-word !important;
      }

      .page-3win-new__product-image-wrapper {
        height: 180px;
      }

      .page-3win-new__card-image {
        height: 180px;
      }

      .page-3win-new__faq-question {
        font-size: 1em;
        padding: 15px;
      }

      .page-3win-new__faq-answer {
        padding: 15px !important;
      }

      .page-3win-new__cta-text {
        font-size: 1.5em;
      }

      .page-3win-new__download-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-3win-new__partner-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
      }
      .page-3win-new__partner-logo {
        min-width: 150px; 
        min-height: 150px;
        max-height: 200px;
        max-width: 200px;
      }
    }

    @media (max-width: 480px) {
      .page-3win-new__header-brand {
        font-size: 1.8em;
      }
      .page-3win-new__hero-section {
        height: 200px;
      }
      .page-3win-new__hero-title {
        font-size: 1.5em;
      }
      .page-3win-new__hero-description {
        font-size: 0.9em;
      }
      .page-3win-new__floating-buttons a {
        font-size: 0.8em;
        padding: 8px 5px;
      }
      .page-3win-new__section-title {
        font-size: 1.5em;
      }
      .page-3win-new__cta-text {
        font-size: 1.3em;
      }
      .page-3win-new__download-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-3win-new__partner-grid {
        grid-template-columns: 1fr;
      }
    }
  