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

    .page-kuwin-com2__sticky-header {
      background-color: #0d47a1; /* Dark blue, strong contrast */
      color: #fff;
      text-align: center;
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-kuwin-com2__main-title {
      font-size: 2.2em;
      margin: 0;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #ffd700; /* Gold color for brand */
    }

    .page-kuwin-com2__sub-title {
      font-size: 1.1em;
      margin-top: 5px;
      color: #fff;
    }

    .page-kuwin-com2__hero-section {
      background: linear-gradient(135deg, #0d47a1, #1a237e);
      color: #fff;
      text-align: center;
      padding: 60px 20px 40px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, body handles header offset */
    }

    .page-kuwin-com2__hero-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .page-kuwin-com2__hero-heading {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffd700;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      line-height: 1.2;
    }

    .page-kuwin-com2__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-kuwin-com2__promo-button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      border: none;
      cursor: pointer;
    }

    .page-kuwin-com2__promo-button:hover {
      background-color: #e63900;
      transform: translateY(-2px);
    }

    .page-kuwin-com2__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 10000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-kuwin-com2__floating-button {
      background-color: #ffd700; /* Gold */
      color: #0d47a1; /* Dark blue */
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-kuwin-com2__floating-button--register {
      background-color: #28a745; /* Green for register */
      color: #fff;
    }

    .page-kuwin-com2__floating-button--register:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-kuwin-com2__floating-button--login {
      background-color: #007bff; /* Blue for login */
      color: #fff;
    }

    .page-kuwin-com2__floating-button--login:hover {
      background-color: #0069d9;
      transform: translateY(-2px);
    }

    .page-kuwin-com2__section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-kuwin-com2__section-heading {
      font-size: 2.5em;
      color: #0d47a1;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-kuwin-com2__section-heading::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #ff4500;
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .page-kuwin-com2__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-kuwin-com2__card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 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-kuwin-com2__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .page-kuwin-com2__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-kuwin-com2__card-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-kuwin-com2__card-title {
      font-size: 1.5em;
      color: #0d47a1;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-kuwin-com2__card-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-kuwin-com2__promo-item {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      padding: 30px;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 25px;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .page-kuwin-com2__promo-item:hover {
      transform: translateY(-3px);
    }

    .page-kuwin-com2__promo-icon {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 50%;
      flex-shrink: 0;
      border: 3px solid #ff4500;
    }

    .page-kuwin-com2__promo-details {
      flex-grow: 1;
    }

    .page-kuwin-com2__promo-title {
      font-size: 1.6em;
      color: #0d47a1;
      margin-bottom: 10px;
    }

    .page-kuwin-com2__promo-description {
      font-size: 1em;
      color: #666;
    }

    .page-kuwin-com2__provider-logo {
      width: 150px;
      height: 80px;
      object-fit: contain;
      margin: 10px;
      max-width: 100%;
      transition: transform 0.3s ease;
    }

    .page-kuwin-com2__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-kuwin-com2__payment-method {
      width: 120px;
      height: 60px;
      object-fit: contain;
      margin: 10px;
      max-width: 100%;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
    }

    .page-kuwin-com2__payment-method:hover {
      filter: grayscale(0%);
    }

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

    .page-kuwin-com2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #e8f0fe;
      color: #0d47a1;
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-kuwin-com2__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #0d47a1;
      pointer-events: none;
    }

    .page-kuwin-com2__faq-question:hover {
      background-color: #d1e3ff;
    }

    .page-kuwin-com2__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none;
    }

    .page-kuwin-com2__faq-item.active .page-kuwin-com2__faq-toggle {
      transform: rotate(45deg);
    }

    .page-kuwin-com2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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;
      font-size: 1em;
    }

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

    .page-kuwin-com2__social-media-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-kuwin-com2__social-icon-wrapper {
      background-color: #fff;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .page-kuwin-com2__social-icon-wrapper:hover {
      transform: translateY(-5px);
    }

    .page-kuwin-com2__social-icon {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-kuwin-com2__sticky-header {
        padding: 10px 0;
      }

      .page-kuwin-com2__main-title {
        font-size: 1.8em;
      }

      .page-kuwin-com2__sub-title {
        font-size: 0.9em;
      }

      .page-kuwin-com2__hero-section {
        padding: 40px 15px 30px;
      }

      .page-kuwin-com2__hero-heading {
        font-size: 2em;
      }

      .page-kuwin-com2__hero-description {
        font-size: 1.1em;
      }

      .page-kuwin-com2__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-kuwin-com2__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }

      .page-kuwin-com2__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-kuwin-com2__section {
        padding: 40px 15px;
      }

      .page-kuwin-com2__section-heading {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-kuwin-com2__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-kuwin-com2__card-image {
        height: 180px;
      }

      .page-kuwin-com2__card-title {
        font-size: 1.3em;
      }

      .page-kuwin-com2__promo-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
      }

      .page-kuwin-com2__promo-icon {
        width: 60px;
        height: 60px;
      }

      .page-kuwin-com2__promo-title {
        font-size: 1.4em;
      }

      .page-kuwin-com2__faq-question,
      .page-kuwin-com2__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-kuwin-com2__faq-question h3 {
        font-size: 1em;
      }

      .page-kuwin-com2__faq-item.active .page-kuwin-com2__faq-answer {
        padding: 15px 15px !important;
      }

      .page-kuwin-com2__social-icon-wrapper {
        width: 50px;
        height: 50px;
      }

      .page-kuwin-com2__social-icon {
        width: 35px;
        height: 35px;
      }

      .page-kuwin-com2__provider-logo, .page-kuwin-com2__payment-method {
        width: 100px;
        height: 50px;
      }
    }

    @media (max-width: 480px) {
      .page-kuwin-com2__hero-heading {
        font-size: 1.8em;
      }

      .page-kuwin-com2__hero-description {
        font-size: 1em;
      }

      .page-kuwin-com2__section-heading {
        font-size: 1.8em;
      }

      .page-kuwin-com2__floating-buttons {
        flex-direction: row;
        width: calc(100% - 30px);
        justify-content: space-around;
        bottom: 10px;
        left: 15px;
        right: 15px;
      }

      .page-kuwin-com2__floating-button {
        flex: 1;
        margin: 0 5px;
      }
    }
  