
    /* CSS BEM naming: .page-58__element-name */
    .page-58 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Khoảng trống cho các nút nổi */
    }

    /* General containers */
    .page-58__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-58__hero-section {
      position: relative;
      text-align: center;
      color: #fff;
      padding: 40px 0; /* Đệm trên dưới cho phần hero */
      background: linear-gradient(135deg, #007bff, #0056b3);
      overflow: hidden;
      margin-bottom: 30px;
    }
    .page-58__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:pattern:1920x1080:abstract,geometric,background]');
      background-size: cover;
      opacity: 0.1;
      z-index: 0;
    }
    .page-58__hero-content {
      position: relative;
      z-index: 1;
      padding-top: 10px; /* Khoảng đệm trang trí nhỏ cho nội dung hero */
    }
    .page-58__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .page-58__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }
    .page-58__hero-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333; /* Đảm bảo độ tương phản */
      padding: 15px 30px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .page-58__hero-button:hover {
      background-color: #e0a800;
      cursor: pointer;
    }

    /* Section styling */
    .page-58__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-58__section-title {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 30px;
      color: #007bff; /* Đảm bảo độ tương phản */
      position: relative;
    }
    .page-58__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ffc107;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* About Section */
    .page-58__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
    }
    .page-58__about-text {
      flex: 1;
      min-width: 300px;
    }
    .page-58__about-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }
    .page-58__about-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Đảm bảo box-sizing cho hình ảnh */
    }

    /* Product Grid */
    .page-58__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }
    .page-58__product-card {
      background-color: #f0f8ff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .page-58__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }
    .page-58__product-card-image-wrapper {
      width: 100%;
      height: 200px; /* Chiều cao cố định để nhất quán */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
    }
    .page-58__product-card-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Đảm bảo hình ảnh bao phủ khu vực */
      box-sizing: border-box; /* Đảm bảo box-sizing cho hình ảnh */
    }
    .page-58__product-card-title {
      font-size: 1.5em;
      color: #0056b3; /* Đảm bảo độ tương phản */
      margin-bottom: 10px;
      padding: 0 15px;
    }
    .page-58__product-card-description {
      font-size: 0.95em;
      color: #555; /* Đảm bảo độ tương phản */
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-58__promotion-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .page-58__promotion-item {
      background-color: #e6f7ff;
      border: 1px solid #b3e0ff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }
    .page-58__promotion-item-title {
      font-size: 1.3em;
      color: #007bff; /* Đảm bảo độ tương phản */
      margin-bottom: 10px;
    }
    .page-58__promotion-item-description {
      font-size: 0.9em;
      color: #666; /* Đảm bảo độ tương phản */
    }

    /* Why Choose Us Section */
    .page-58__advantages-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .page-58__advantage-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-left: 5px solid #007bff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
    }
    .page-58__advantage-item-title {
      font-size: 1.2em;
      color: #007bff; /* Đảm bảo độ tương phản */
      margin-bottom: 10px;
    }
    .page-58__advantage-item-description {
      color: #555; /* Đảm bảo độ tương phản */
    }

    /* FAQ Section */
    .page-58__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .page-58__faq-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
    .page-58__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #007bff;
      color: #fff; /* Đảm bảo độ tương phản */
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .page-58__faq-question:hover {
      background-color: #0056b3;
    }
    .page-58__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #fff; /* Đảm bảo độ tương phản */
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }
    .page-58__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click */
    }
    .page-58__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #e9ecef;
      color: #333; /* Đảm bảo độ tương phản */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }
    .page-58__faq-item.active .page-58__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }
    .page-58__faq-item.active .page-58__faq-question {
      background-color: #0056b3;
    }

    /* Floating Buttons */
    .page-58__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .page-58__floating-button {
      background-color: #ffc107;
      color: #333; /* Đảm bảo độ tương phản */
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      white-space: nowrap; /* Ngăn không cho văn bản xuống dòng */
    }
    .page-58__floating-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }
    .page-58__floating-button--login {
      background-color: #007bff;
      color: #fff; /* Đảm bảo độ tương phản */
    }
    .page-58__floating-button--login:hover {
      background-color: #0056b3;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-58__hero-title {
        font-size: 2.2em;
      }
      .page-58__hero-subtitle {
        font-size: 1.2em;
      }
      .page-58__section-title {
        font-size: 2em;
      }
      .page-58__about-content {
        flex-direction: column;
      }
      .page-58__product-grid {
        grid-template-columns: 1fr;
      }
      .page-58__product-card-image-wrapper {
        height: 180px;
      }
      .page-58__promotion-list,
      .page-58__advantages-list {
        grid-template-columns: 1fr;
      }
      .page-58__promotion-item,
      .page-58__advantage-item {
        padding: 15px;
      }
      .page-58__faq-question {
        padding: 12px 15px;
      }
      .page-58__faq-question h3 {
        font-size: 1em;
      }
      .page-58__faq-answer {
        padding: 0 10px;
      }
      .page-58__faq-item.active .page-58__faq-answer {
        padding: 15px 10px !important;
      }
      .page-58__floating-buttons {
        gap: 10px;
        bottom: 15px;
        padding: 8px 15px;
      }
      .page-58__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      /* List item specific responsive styles */
      .page-58__promotion-item,
      .page-58__advantage-item,
      .page-58__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;
      }
      .page-58__promotion-list,
      .page-58__advantages-list,
      .page-58__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      /* Ensure image containers also respect responsive rules */
      .page-58__about-image img,
      .page-58__product-card-image-wrapper img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-58__about-image,
      .page-58__product-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-58__hero-title {
        font-size: 1.8em;
      }
      .page-58__hero-subtitle {
        font-size: 1em;
      }
      .page-58__hero-button {
        padding: 12px 25px;
        font-size: 0.9em;
      }
      .page-58__section-title {
        font-size: 1.8em;
      }
      .page-58__floating-buttons {
        width: calc(100% - 30px); /* Điều chỉnh chiều rộng để vừa với màn hình có đệm */
        left: 15px;
        transform: none;
        bottom: 10px;
        justify-content: space-around;
        gap: 5px;
      }
      .page-58__floating-button {
        flex: 1; /* Phân phối đều các nút */
        text-align: center;
        padding: 10px 15px;
      }
    }
  