
    /* CSS cho trang 58k */
    .page-58k {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

    /* Đảm bảo khoảng cách từ header */
    .page-58k__hero-section {
      padding-top: 10px; /* Nhỏ gọn vì body đã có padding-top từ shared.css */
    }

    .page-58k__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-58k__section--dark {
        background-color: #f0f0f0;
    }

    .page-58k__section-title {
      font-size: 2.5em;
      color: #0056b3; /* Màu xanh đậm */
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-58k__section-subtitle {
      font-size: 1.8em;
      color: #0056b3;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-58k__text-content {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-58k__highlight {
      color: #e60000; /* Màu đỏ nổi bật */
      font-weight: bold;
    }

    /* Hero Section */
    .page-58k__hero-section {
      position: relative;
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      overflow: hidden;
      background-color: #007bff; /* Fallback */
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-58k__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.7); /* Làm tối ảnh nền để chữ nổi bật */
    }

    .page-58k__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-58k__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #ffe0b2; /* Màu vàng cam nhạt */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-58k__hero-description {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #fff;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-58k__cta-button {
      display: inline-block;
      background-color: #ffc107; /* Màu vàng */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-58k__cta-button:hover {
      background-color: #e0a800; /* Màu vàng đậm hơn */
      transform: translateY(-2px);
    }

    /* Offer Details Section */
    .page-58k__offer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-58k__offer-card {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
      border-top: 5px solid #007bff;
    }

    .page-58k__offer-card:hover {
      transform: translateY(-5px);
    }

    .page-58k__offer-card-icon {
      margin-bottom: 20px;
      max-width: 250px; /* Tăng kích thước ảnh */
      height: auto;
      border-radius: 4px;
    }

    .page-58k__offer-card-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-58k__offer-card-description {
      font-size: 1em;
      color: #666;
    }

    /* How to Claim Section */
    .page-58k__steps-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 30px;
    }

    .page-58k__step-item {
      display: flex;
      align-items: center;
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      border-left: 5px solid #28a745; /* Màu xanh lá cây */
    }

    .page-58k__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #28a745;
      margin-right: 20px;
      flex-shrink: 0;
      width: 60px;
      text-align: center;
    }

    .page-58k__step-content {
      flex-grow: 1;
    }

    .page-58k__step-title {
      font-size: 1.6em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-58k__step-description {
      font-size: 1.1em;
      color: #555;
    }

    .page-58k__step-image {
      width: 250px; /* Kích thước ảnh bước */
      height: auto;
      object-fit: cover;
      border-radius: 8px;
      margin-left: 30px;
      flex-shrink: 0;
    }

    /* Why Choose Us Section */
    .page-58k__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-58k__feature-item {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      border-bottom: 4px solid #17a2b8; /* Màu xanh ngọc */
    }

    .page-58k__feature-icon {
      margin-bottom: 15px;
      max-width: 200px; /* Tăng kích thước ảnh */
      height: auto;
      border-radius: 4px;
    }

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

    .page-58k__feature-description {
      font-size: 0.95em;
      color: #666;
    }

    /* FAQ Section */
    .page-58k__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 20px;
    }

    .page-58k__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-58k__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-58k__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      cursor: pointer;
      background-color: #f8f8f8;
      border-radius: 5px;
      margin-bottom: 5px;
      transition: background-color 0.3s ease;
    }

    .page-58k__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-58k__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
    }

    .page-58k__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
      transition: transform 0.3s ease;
    }

    .page-58k__faq-item.active .page-58k__faq-toggle {
      transform: rotate(45deg); /* Biến đổi '+' thành 'x' hoặc '-' */
    }

    .page-58k__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #666;
      font-size: 1em;
      background-color: #fefefe;
      border-radius: 0 0 5px 5px;
    }

    .page-58k__faq-item.active .page-58k__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* General Image Styling for responsiveness */
    .page-58k img {
      max-width: 100%;
      height: auto;
      display: block; /* Loại bỏ khoảng trắng dưới ảnh */
      object-fit: cover; /* Đảm bảo ảnh không bị méo */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-58k__hero-title {
        font-size: 2.5em;
      }

      .page-58k__hero-description {
        font-size: 1.2em;
      }

      .page-58k__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }

      .page-58k__section-title {
        font-size: 2em;
      }

      .page-58k__section-subtitle {
        font-size: 1.5em;
      }

      .page-58k__offer-grid {
        grid-template-columns: 1fr;
      }

      .page-58k__step-item {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 5px solid #28a745;
      }

      .page-58k__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-58k__step-image {
        margin-left: 0;
        margin-top: 20px;
        width: 100% !important; /* Full width on mobile */
        max-width: 300px !important; /* Limit max width for smaller screens */
        box-sizing: border-box !important;
      }

      .page-58k__feature-list {
        grid-template-columns: 1fr;
      }

      /* List item mobile responsiveness */
      .page-58k__offer-card,
      .page-58k__step-item,
      .page-58k__feature-item,
      .page-58k__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to avoid excessive spacing */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

      .page-58k__section {
        padding: 20px 15px;
        margin-bottom: 15px;
      }

      .page-58k__faq-section {
        padding: 20px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-58k__hero-title {
        font-size: 2em;
      }
      .page-58k__hero-description {
        font-size: 1em;
      }
      .page-58k__section-title {
        font-size: 1.8em;
      }
      .page-58k__step-title {
        font-size: 1.4em;
      }
      .page-58k__step-description {
        font-size: 1em;
      }
    }
  