
    /* CSS for page-ok365 */
    .page-ok365 {
      font-family: 'Arial', sans-serif;
      color: #333; /* Màu chữ tối để có độ tương phản tốt */
      background-color: #f8f9fa; /* Nền sáng */
      line-height: 1.6;
      padding: 0;
      margin: 0;
      overflow-x: hidden; /* Ngăn cuộn ngang */
    }

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

    /* Phần Banner */
    .page-ok365-banner {
      position: relative;
      width: 100%;
      text-align: center;
      background-color: #0056b3; /* Một màu thương hiệu mạnh mẽ */
      color: #ffffff;
      padding-bottom: 20px; /* Khoảng trống cho văn bản bên dưới hình ảnh banner */
    }

    .page-ok365-banner-img {
      width: 100%;
      height: auto;
      max-height: 300px; /* Giới hạn chiều cao banner */
      object-fit: cover;
      display: block;
      margin: 0 auto; /* Căn giữa hình ảnh */
    }

    .page-ok365-banner-content {
      padding: 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-ok365-banner-content h1 {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: #ffffff; /* Đảm bảo độ tương phản trên nền banner */
    }
    .page-ok365-banner-content p {
        font-size: 1.1em;
        color: #e0e0e0;
    }

    /* Nút Nổi */
    .page-ok365-floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 15px;
      padding: 10px;
      background-color: rgba(0, 0, 0, 0.7); /* Nền bán trong suốt */
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-ok365-button {
      background-color: #ffc107; /* Màu sáng, hấp dẫn */
      color: #333;
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-ok365-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-ok365-button-register {
      background-color: #28a745; /* Màu xanh cho đăng ký */
      color: #ffffff;
    }
    .page-ok365-button-register:hover {
      background-color: #218838;
    }

    /* Các Phần */
    .page-ok365-section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-ok365-section h2 {
      text-align: center;
      color: #0056b3;
      margin-bottom: 30px;
      font-size: 2em;
    }

    .page-ok365-section p {
      margin-bottom: 15px;
      font-size: 1em;
    }

    .page-ok365-section ul {
      list-style: disc inside;
      padding-left: 20px;
      margin-bottom: 15px;
    }

    .page-ok365-section ul li {
      margin-bottom: 8px;
    }

    /* Lưới Sản Phẩm */
    .page-ok365-product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center; /* Căn giữa các mục trong lưới */
    }

    .page-ok365-product-card {
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      width: 100%; /* Đảm bảo thẻ chiếm toàn bộ chiều rộng cột lưới */
      max-width: 250px; /* Chiều rộng tối đa cho màn hình lớn hơn */
    }

    .page-ok365-product-card:hover {
      transform: translateY(-5px);
    }

    .page-ok365-product-card img {
      width: 100%;
      height: 120px;
      object-fit: contain; /* Giữ tỷ lệ khung hình, vừa vặn trong hộp */
      margin-bottom: 10px;
      border-radius: 4px;
    }

    .page-ok365-product-card h3 {
      font-size: 1.1em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-ok365-product-card p {
      font-size: 0.9em;
      color: #555;
      margin-bottom: 10px;
    }

    .page-ok365-product-card a {
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-ok365-product-card a:hover {
      background-color: #0056b3;
    }

    /* Logo Nhà Cung Cấp */
    .page-ok365-providers {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    .page-ok365-provider-logo {
        width: 80px;
        height: 50px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: filter 0.3s ease, opacity 0.3s ease;
    }
    .page-ok365-provider-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    /* Điều chỉnh Responsive */
    @media (max-width: 768px) {
      .page-ok365-banner-content h1 {
        font-size: 1.8em;
      }
      .page-ok365-banner-content p {
        font-size: 1em;
      }
      .page-ok365-section h2 {
        font-size: 1.8em;
      }
      .page-ok365-floating-buttons {
        gap: 10px;
        padding: 8px;
        bottom: 0; /* Dính vào đáy trên di động */
        border-radius: 0; /* Không bo tròn góc ở đáy */
      }
      .page-ok365-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-ok365-product-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      }
      .page-ok365-product-card {
        padding: 10px;
      }
      .page-ok365-product-card img {
        height: 100px;
      }
    }

    @media (max-width: 480px) {
      .page-ok365-banner-content h1 {
        font-size: 1.5em;
      }
      .page-ok365-button {
        font-size: 0.9em;
        padding: 8px 15px;
      }
      .page-ok365-floating-buttons {
        flex-direction: row; /* Giữ hàng cho các nút nhỏ */
        justify-content: space-around;
        gap: 5px;
      }
      .page-ok365-section {
          padding: 30px 10px;
      }
      .page-ok365-product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cột trên màn hình rất nhỏ */
      }
      .page-ok365-product-card {
          max-width: none; /* Cho phép thẻ kéo dài */
      }
    }

  