
    :root {
      --primary-color: #e44d26; /* Cam đậm */
      --secondary-color: #f7b731; /* Vàng cam */
      --text-color: #333;
      --light-text-color: #f0f0f0;
      --background-dark: #2c3e50; /* Xám xanh đậm */
      --background-light: #ecf0f1; /* Xám nhạt */
      --border-color: #ccc;
    }

    .page-889new {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-light);
    }

    /* Ensure body padding-top is handled by shared.css,
       so hero-section only needs a small top padding for aesthetic */
    .page-889new__hero-section {
      padding: 60px 20px 40px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: var(--light-text-color);
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body handles main offset */
    }
    .page-889new__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:abstract:1920x1080:geometric,pattern,abstract]');
      background-size: cover;
      background-position: center;
      opacity: 0.1;
      z-index: 0;
    }
    .page-889new__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-889new__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-889new__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-889new__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .page-889new__button {
      background-color: #fff;
      color: var(--primary-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-889new__button:hover {
      background-color: var(--background-dark);
      color: #fff;
    }
    
    .page-889new__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      margin-bottom: 30px;
    }

    .page-889new__section--dark {
      background-color: var(--background-dark);
      color: var(--light-text-color);
    }

    .page-889new__section-title {
      font-size: 2em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }
    .page-889new__section-title--dark {
      color: var(--secondary-color);
    }

    .page-889new__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--secondary-color);
      border-radius: 2px;
    }
    .page-889new__section-title--dark::after {
      background-color: var(--primary-color);
    }

    .page-889new__text-content {
      font-size: 1.1em;
      text-align: justify;
      margin-bottom: 20px;
    }

    .page-889new__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-889new__grid-item {
      background-color: var(--background-light);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-889new__grid-item:hover {
      transform: translateY(-5px);
    }

    .page-889new__grid-item-icon {
      width: 150px; /* Min size 200x200, but content display can be smaller. Actual image will be larger */
      height: 150px;
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }
    .page-889new__grid-item-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }
    .page-889new__grid-item-description {
      font-size: 0.95em;
      color: var(--text-color);
    }

    .page-889new__product-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-889new__product-card {
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-889new__product-card:hover {
      transform: translateY(-5px);
    }

    .page-889new__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-889new__product-info {
      padding: 15px;
    }

    .page-889new__product-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-889new__product-description {
      font-size: 0.9em;
      color: var(--text-color);
    }

    .page-889new__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjusted for larger images */
      gap: 20px;
      justify-items: center;
      align-items: center;
      margin-top: 30px;
    }

    .page-889new__logo-item {
      padding: 15px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Uniform height for logos */
      width: 100%;
      max-width: 180px; /* Max width for logos */
      box-sizing: border-box;
    }

    .page-889new__logo-image {
      max-width: 100%;
      max-height: 70px; /* Adjust max-height to fit within item */
      object-fit: contain;
      display: block;
      box-sizing: border-box;
    }

    .page-889new__faq-section {
      background-color: var(--background-light);
      padding: 40px 20px;
      max-width: 1000px;
      margin: 30px auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .page-889new__faq-title {
      font-size: 2em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-889new__faq-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--secondary-color);
      border-radius: 2px;
    }

    .page-889new__faq-item {
      margin-bottom: 10px;
      border: 1px solid var(--border-color);
      border-radius: 5px;
      overflow: hidden;
      background-color: #fff;
    }

    .page-889new__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--text-color);
      transition: background-color 0.3s ease;
    }

    .page-889new__faq-question:hover {
      background-color: #f0f0f0;
    }
    
    .page-889new__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-889new__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: var(--secondary-color);
      transition: transform 0.3s ease;
    }

    .page-889new__faq-item.active .page-889new__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-889new__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--text-color);
      font-size: 0.95em;
    }

    .page-889new__faq-item.active .page-889new__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }

    /* Floating buttons for Register/Login */
    .page-889new__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-889new__floating-button {
      background-color: var(--primary-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease;
      text-align: center;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-889new__floating-button:hover {
      background-color: var(--background-dark);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-889new__hero-title {
        font-size: 2em;
      }

      .page-889new__hero-subtitle {
        font-size: 1em;
      }

      .page-889new__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-889new__button {
        width: 80%;
        margin: 0 auto;
      }

      .page-889new__section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }

      .page-889new__section-title {
        font-size: 1.6em;
      }

      .page-889new__text-content {
        font-size: 1em;
      }

      .page-889new__grid,
      .page-889new__product-gallery,
      .page-889new__logo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-889new__grid-item,
      .page-889new__product-card,
      .page-889new__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-889new__grid-item-icon,
      .page-889new__product-image,
      .page-889new__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-889new__grid-item-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-889new__faq-section {
        padding: 30px 15px;
        margin: 20px 10px;
      }

      .page-889new__faq-question {
        padding: 12px 15px;
      }

      .page-889new__faq-question h3 {
        font-size: 1em;
      }

      .page-889new__faq-answer {
        padding: 0 15px;
      }
      
      .page-889new__faq-item.active .page-889new__faq-answer {
        padding: 15px !important;
      }

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

      .page-889new__floating-button {
        flex: 1;
        padding: 10px 10px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-889new__hero-title {
        font-size: 1.8em;
      }
      .page-889new__hero-subtitle {
        font-size: 0.9em;
      }
      .page-889new__button {
        width: 90%;
      }
      .page-889new__floating-button {
        font-size: 0.8em;
        padding: 8px 8px;
      }
    }
  