
    /* Base styles for the page */
    .page-678win-dangnhap {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Space for fixed footer */
    }

    /* Section styling */
    .page-678win-dangnhap__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #ffffff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-678win-dangnhap__section--hero {
      background-color: #0d1a26; /* Darker background for hero */
      color: #ffffff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 0;
      margin-bottom: 0;
      padding-top: 10px; /* Small gap below fixed header */
    }

    .page-678win-dangnhap__section-title {
      font-size: 2.5em;
      color: #0056b3; /* Primary blue for titles */
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-678win-dangnhap__section-title--hero {
      color: #ffcc00; /* Gold for hero title */
      font-size: 3em;
      margin-bottom: 15px;
    }

    .page-678win-dangnhap__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    .page-678win-dangnhap__text--hero {
      color: #e0e0e0;
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    /* Highlighted text for keywords */
    .page-678win-dangnhap__highlight {
      color: #007bff; /* Primary blue for highlights */
      font-weight: bold;
    }
    .page-678win-dangnhap__section--hero .page-678win-dangnhap__highlight {
      color: #ffcc00; /* Gold for highlights in hero */
    }

    /* Buttons */
    .page-678win-dangnhap__button {
      display: inline-block;
      background-color: #007bff; /* Primary blue button */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-678win-dangnhap__button:hover {
      background-color: #0056b3;
    }

    .page-678win-dangnhap__button--hero {
      background-color: #ffcc00; /* Gold button for hero */
      color: #0d1a26;
      padding: 15px 30px;
      font-size: 1.3em;
      box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
    }

    .page-678win-dangnhap__button--hero:hover {
      background-color: #e6b800;
    }

    /* Floating Buttons */
    .page-678win-dangnhap__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-678win-dangnhap__floating-btn {
      background-color: #ffcc00;
      color: #0d1a26;
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
    }

    .page-678win-dangnhap__floating-btn:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Product Grid */
    .page-678win-dangnhap__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-678win-dangnhap__product-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

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

    .page-678win-dangnhap__product-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
    }

    .page-678win-dangnhap__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Ensures image covers the area */
      width: 100%; /* Ensure image fills wrapper */
    }

    .page-678win-dangnhap__product-content {
      padding: 20px;
    }

    .page-678win-dangnhap__product-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-678win-dangnhap__product-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    /* Promotions */
    .page-678win-dangnhap__promotion-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-678win-dangnhap__promotion-item {
      background-color: #f0f8ff;
      padding: 20px;
      border-left: 5px solid #007bff;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-678win-dangnhap__promotion-title {
      font-size: 1.3em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-678win-dangnhap__promotion-description {
      font-size: 1em;
      color: #444;
    }

    /* Steps/Guide */
    .page-678win-dangnhap__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-678win-dangnhap__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-678win-dangnhap__step-number {
      background-color: #007bff;
      color: #ffffff;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      flex-shrink: 0;
      margin-right: 15px;
    }

    .page-678win-dangnhap__step-content {
      flex-grow: 1;
    }

    .page-678win-dangnhap__step-title {
      font-size: 1.2em;
      color: #0056b3;
      margin-top: 0;
      margin-bottom: 8px;
    }

    .page-678win-dangnhap__step-description {
      font-size: 1em;
      color: #555;
    }

    /* FAQ Section */
    .page-678win-dangnhap__faq-section {
      margin-top: 40px;
    }

    .page-678win-dangnhap__faq-item {
      background-color: #f9f9f9;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    .page-678win-dangnhap__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #e0eaff; /* Light blue for question */
      color: #0056b3;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-678win-dangnhap__faq-question:hover {
      background-color: #cce0ff;
    }

    .page-678win-dangnhap__faq-question h3 {
      margin: 0;
      font-size: 1.1em; /* Adjust to match parent font size */
      pointer-events: none; /* Crucial for click event */
    }

    .page-678win-dangnhap__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Crucial for click event */
      transition: transform 0.3s ease;
    }

    .page-678win-dangnhap__faq-item.active .page-678win-dangnhap__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus */
    }

    .page-678win-dangnhap__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;
      background-color: #ffffff;
      color: #333;
    }

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

    /* General responsive image styles */
    .page-678win-dangnhap img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Image container for content images */
    .page-678win-dangnhap__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      text-align: center; /* To center the image inside */
    }

    .page-678win-dangnhap__content-image {
      max-width: 100%;
      height: auto;
      display: inline-block; /* To allow text-align: center on parent */
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-678win-dangnhap__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }

      .page-678win-dangnhap__section--hero {
        padding: 40px 15px;
      }

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

      .page-678win-dangnhap__section-title--hero {
        font-size: 2.2em;
      }

      .page-678win-dangnhap__text--hero {
        font-size: 1em;
      }

      .page-678win-dangnhap__button--hero {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-678win-dangnhap__product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-678win-dangnhap__product-image-wrapper {
        height: 180px;
      }

      /* Responsive list items for promotion list */
      .page-678win-dangnhap__promotion-list {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 !important; /* Ensure no extra padding on ul/ol */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-678win-dangnhap__promotion-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Responsive list items for steps list */
      .page-678win-dangnhap__steps-list {
        padding: 0 !important; /* Ensure no extra padding on ul/ol */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-678win-dangnhap__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px !important;
        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-678win-dangnhap__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }
      .page-678win-dangnhap__step-title {
        font-size: 1.1em;
      }
      .page-678win-dangnhap__step-description {
        font-size: 0.95em;
      }

      /* Responsive for FAQ */
      .page-678win-dangnhap__faq-container {
        padding: 0 !important; /* Ensure no extra padding on container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-678win-dangnhap__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-678win-dangnhap__faq-question h3 {
        font-size: 1em;
      }
      .page-678win-dangnhap__faq-answer {
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-678win-dangnhap__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Responsive images */
      .page-678win-dangnhap__product-image-wrapper,
      .page-678win-dangnhap__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-678win-dangnhap__product-image,
      .page-678win-dangnhap__content-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    /* Ensure good contrast for all elements */
    .page-678win-dangnhap__section-title { color: #0056b3; } /* Dark blue on white */
    .page-678win-dangnhap__section-title--hero { color: #ffcc00; } /* Gold on dark blue */
    .page-678win-dangnhap__text { color: #555; } /* Dark grey on white */
    .page-678win-dangnhap__text--hero { color: #e0e0e0; } /* Light grey on dark blue */
    .page-678win-dangnhap__button { background-color: #007bff; color: #ffffff; } /* Blue on white */
    .page-678win-dangnhap__button--hero { background-color: #ffcc00; color: #0d1a26; } /* Gold on dark blue */
    .page-678win-dangnhap__floating-btn { background-color: #ffcc00; color: #0d1a26; } /* Gold on dark blue */
    .page-678win-dangnhap__product-title { color: #0056b3; } /* Dark blue on light grey */
    .page-678win-dangnhap__product-description { color: #666; } /* Dark grey on light grey */
    .page-678win-dangnhap__promotion-title { color: #007bff; } /* Blue on light blue */
    .page-678win-dangnhap__promotion-description { color: #444; } /* Dark grey on light blue */
    .page-678win-dangnhap__step-number { background-color: #007bff; color: #ffffff; } /* Blue on white */
    .page-678win-dangnhap__step-title { color: #0056b3; } /* Dark blue on light grey */
    .page-678win-dangnhap__step-description { color: #555; } /* Dark grey on light grey */
    .page-678win-dangnhap__faq-question { background-color: #e0eaff; color: #0056b3; } /* Light blue on dark blue */
    .page-678win-dangnhap__faq-answer { background-color: #ffffff; color: #333; } /* White on dark grey */
  