
    .page-13-win {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
    }

    /* Fixed header offset handling */
    .page-13-win__hero-section {
        padding-top: 10px; /* Small decorative top padding */
    }
    .page-13-win__section:first-of-type {
        padding-top: 10px; /* Small decorative top padding for first content section if no hero */
    }
    /* Fallback for shared.css not handling body padding-top */
    /* .page-13-win { padding-top: var(--header-offset, 122px); } */

    .page-13-win__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-13-win__header {
      text-align: center;
      padding: 20px 0;
      background-color: #0d47a1; /* Dark blue for brand */
      color: #fff;
      position: relative; /* For floating buttons */
    }

    .page-13-win__title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffcc00; /* Gold for emphasis */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      text-align: center; /* Centered as per requirement */
    }

    .page-13-win__subtitle {
      font-size: 1.2em;
      color: #eee;
      text-align: center;
    }

    .page-13-win__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-13-win__button {
      background-color: #ffcc00; /* Gold button */
      color: #0d47a1; /* Dark blue text */
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      white-space: nowrap;
      text-decoration: none; /* For the CTA a tag */
      display: inline-block; /* For the CTA a tag */
    }

    .page-13-win__button:hover {
      background-color: #e0b300;
      transform: translateY(-2px);
    }

    .page-13-win__promo-banner {
      background-color: #1a5ca7; /* Slightly lighter blue */
      color: #fff;
      padding: 15px 20px;
      text-align: center;
      font-size: 1.1em;
      margin-top: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .page-13-win__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-13-win__section--dark {
        background-color: #0d47a1;
        color: #fff;
    }

    .page-13-win__section-title {
      font-size: 2em;
      color: #0d47a1; /* Dark blue */
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }
    .page-13-win__section--dark .page-13-win__section-title {
        color: #ffcc00; /* Gold for dark sections */
    }

    .page-13-win__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #ffcc00; /* Gold underline */
      margin: 10px auto 0;
    }

    .page-13-win__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .page-13-win__card {
      background-color: #fefefe;
      border-radius: 8px;
      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;
      height: 100%;
    }

    .page-13-win__section--dark .page-13-win__card {
        background-color: #1a5ca7;
        color: #fff;
    }

    .page-13-win__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .page-13-win__card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      margin: 0 auto; /* Centered as per requirement */
      max-width: 100%; /* Image responsiveness */
      box-sizing: border-box; /* Ensures padding/border are included in width */
    }

    .page-13-win__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-13-win__card-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #0d47a1;
    }
    .page-13-win__section--dark .page-13-win__card-title {
        color: #ffcc00;
    }

    .page-13-win__card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }
    .page-13-win__section--dark .page-13-win__card-description {
        color: #ddd;
    }

    .page-13-win__card-button {
      background-color: #ffcc00;
      color: #0d47a1;
      border: none;
      padding: 10px 20px;
      border-radius: 20px;
      font-size: 0.9em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      margin-top: auto; /* Push button to bottom */
    }

    .page-13-win__card-button:hover {
      background-color: #e0b300;
    }

    .page-13-win__text-content {
      padding: 0 20px;
      font-size: 1.1em;
      text-align: justify;
      margin-bottom: 20px;
    }

    .page-13-win__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
      padding: 0 20px;
    }

    .page-13-win__list-item {
      background-color: #f0f0f0;
      padding: 15px 20px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      font-weight: bold;
      color: #0d47a1;
      text-align: center;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-13-win__section--dark .page-13-win__list-item {
        background-color: #1a5ca7; /* Darker blue for list items in dark section */
        color: #ffcc00;
        border: 1px solid #ffcc00;
    }

    /* FAQ Section */
    .page-13-win__faq-section {
        padding: 40px 0;
        background-color: #f0f4f8;
    }

    .page-13-win__faq-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .page-13-win__faq-item {
        background-color: #fff;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        overflow: hidden;
    }

    .page-13-win__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        font-size: 1.1em;
        font-weight: bold;
        color: #0d47a1;
        cursor: pointer;
        user-select: none;
        background-color: #e6f0ff;
        border-bottom: 1px solid #d0e0f0;
        transition: background-color 0.3s ease;
    }

    .page-13-win__faq-question:hover {
        background-color: #d0e0f0;
    }

    .page-13-win__faq-question h3 {
        margin: 0;
        font-size: 1.1em; /* Adjust to match parent */
        color: #0d47a1;
        pointer-events: none; /* Crucial for click event on parent */
        flex-grow: 1;
    }

    .page-13-win__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffcc00;
        margin-left: 15px;
        pointer-events: none; /* Crucial for click event on parent */
        transition: transform 0.3s ease;
    }

    .page-13-win__faq-item.active .page-13-win__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-13-win__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding 0 to animate */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #555;
        background-color: #fff;
        border-top: none;
    }

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

    .page-13-win__faq-answer p {
        margin: 0 0 10px 0;
    }
    .page-13-win__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-13-win__container {
        padding: 10px;
      }

      .page-13-win__title {
        font-size: 2em;
      }

      .page-13-win__subtitle {
        font-size: 1em;
      }

      .page-13-win__promo-banner {
        padding: 10px 15px;
        font-size: 1em;
      }

      .page-13-win__section {
        padding: 20px 0;
        margin-bottom: 20px;
      }

      .page-13-win__section-title {
        font-size: 1.7em;
        margin-bottom: 20px;
      }

      .page-13-win__grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-13-win__card-image {
        height: 180px;
      }

      .page-13-win__card-title {
        font-size: 1.2em;
      }

      .page-13-win__card-description {
        font-size: 0.9em;
      }

      .page-13-win__list {
        grid-template-columns: 1fr;
        padding: 0 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-13-win__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !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-13-win__text-content {
        padding: 0 10px;
        font-size: 1em;
      }

      .page-13-win__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-13-win__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-13-win__faq-question {
          padding: 12px 15px;
          font-size: 1em;
      }
      .page-13-win__faq-question h3 {
          font-size: 1em;
      }
      .page-13-win__faq-toggle {
          font-size: 1.3em;
      }
      .page-13-win__faq-answer {
          padding: 0 15px;
      }
      .page-13-win__faq-item.active .page-13-win__faq-answer {
          padding: 15px !important;
      }
    }
    @media (max-width: 480px) {
        .page-13-win__floating-buttons {
            flex-direction: row;
            width: calc(100% - 30px);
            justify-content: space-around;
            bottom: 10px;
            left: 15px;
            right: 15px;
        }
        .page-13-win__button {
            flex: 1;
            margin: 0 5px;
            padding: 10px 15px;
        }
    }
  