
    /* General styles for the page-8ki-nh-c-i scope */
.page-8ki-nh-c-i {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-8ki-nh-c-i__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-8ki-nh-c-i__section-title {
  font-size: 2.5em;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-8ki-nh-c-i__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.page-8ki-nh-c-i__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap; /* Prevent button text from wrapping */
}

.page-8ki-nh-c-i__button--primary {
  background-color: #e44d26; /* Vibrant orange for primary actions */
  color: #fff;
  border: 2px solid #e44d26;
}

.page-8ki-nh-c-i__button--primary:hover {
  background-color: #ff6633;
  transform: translateY(-2px);
}

.page-8ki-nh-c-i__button--secondary {
  background-color: transparent;
  color: #e44d26;
  border: 2px solid #e44d26;
}

.page-8ki-nh-c-i__button--secondary:hover {
  background-color: #e44d26;
  color: #fff;
  transform: translateY(-2px);
}

.page-8ki-nh-c-i__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-8ki-nh-c-i__button--large {
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-8ki-nh-c-i__button--text {
  background: none;
  border: none;
  color: #e44d26;
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
  cursor: pointer;
  text-align: left;
  display: block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.page-8ki-nh-c-i__button--text:hover {
  color: #ff6633;
}

/* Hero Section */
.page-8ki-nh-c-i__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small padding, relying on body for header offset */
  box-sizing: border-box;
}

.page-8ki-nh-c-i__hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-8ki-nh-c-i__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: -1;
}

.page-8ki-nh-c-i__hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 900px;
  padding: 20px;
}

.page-8ki-nh-c-i__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-8ki-nh-c-i__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  font-weight: normal;
}

.page-8ki-nh-c-i__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* About Section */
.page-8ki-nh-c-i__about-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-8ki-nh-c-i__about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-8ki-nh-c-i__about-item {
  background-color: #fefefe;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.page-8ki-nh-c-i__about-item:hover {
  transform: translateY(-10px);
}

.page-8ki-nh-c-i__about-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-8ki-nh-c-i__about-item-title {
  font-size: 1.8em;
  color: #e44d26;
  margin-bottom: 15px;
}

.page-8ki-nh-c-i__about-item-text {
  font-size: 1em;
  color: #666;
}

/* Products Section */
.page-8ki-nh-c-i__products-section {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.page-8ki-nh-c-i__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-8ki-nh-c-i__product-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.page-8ki-nh-c-i__product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-8ki-nh-c-i__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-8ki-nh-c-i__product-title {
  font-size: 1.6em;
  color: #1a1a1a;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-8ki-nh-c-i__product-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 20px;
  flex-grow: 1; /* Ensures cards are same height if descriptions vary */
}

/* Promotions Section */
.page-8ki-nh-c-i__promotions-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-8ki-nh-c-i__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-8ki-nh-c-i__promo-card {
  background-color: #fefefe;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-8ki-nh-c-i__promo-card:hover {
  transform: translateY(-8px);
}

.page-8ki-nh-c-i__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-8ki-nh-c-i__promo-title {
  font-size: 1.5em;
  color: #e44d26;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-8ki-nh-c-i__promo-text {
  font-size: 1em;
  color: #666;
  padding: 0 15px 20px;
  flex-grow: 1;
}

/* News Section */
.page-8ki-nh-c-i__news-section {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.page-8ki-nh-c-i__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-8ki-nh-c-i__news-article {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.page-8ki-nh-c-i__news-article:hover {
  transform: translateY(-8px);
}

.page-8ki-nh-c-i__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-8ki-nh-c-i__news-title {
  font-size: 1.4em;
  color: #1a1a1a;
  margin: 20px 15px 10px;
  line-height: 1.3;
}

.page-8ki-nh-c-i__news-date {
  font-size: 0.9em;
  color: #999;
  margin: 0 15px 10px;
}

.page-8ki-nh-c-i__news-excerpt {
  font-size: 1em;
  color: #666;
  margin: 0 15px 20px;
  flex-grow: 1;
}

/* Why Choose Section */
.page-8ki-nh-c-i__why-choose-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-8ki-nh-c-i__why-choose-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-8ki-nh-c-i__why-choose-item {
  background-color: #fefefe;
  border-left: 5px solid #e44d26;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.page-8ki-nh-c-i__why-choose-item-title {
  font-size: 1.5em;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.page-8ki-nh-c-i__why-choose-item p {
  color: #666;
  font-size: 1em;
}

/* FAQ Section */
.page-8ki-nh-c-i__faq-section {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.page-8ki-nh-c-i__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-8ki-nh-c-i__faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-sizing: border-box;
}

.page-8ki-nh-c-i__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #e44d26;
  color: #fff;
  border-radius: 8px;
  user-select: none;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.page-8ki-nh-c-i__faq-question:hover {
  background-color: #ff6633;
}

.page-8ki-nh-c-i__faq-question-title {
  font-size: 1.2em;
  margin: 0;
  flex-grow: 1;
  pointer-events: none; /* Crucial for click event on parent div */
}

.page-8ki-nh-c-i__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 15px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Crucial for click event on parent div */
}

.page-8ki-nh-c-i__faq-item.active .page-8ki-nh-c-i__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-8ki-nh-c-i__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px; /* Initial padding must be 0 for smooth transition */
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  background-color: #fefefe;
  color: #333;
  opacity: 0;
}

.page-8ki-nh-c-i__faq-item.active .page-8ki-nh-c-i__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 15px !important;
  opacity: 1;
}

.page-8ki-nh-c-i__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.8;
}

/* CTA Section */
.page-8ki-nh-c-i__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e44d26, #ff8c42);
  color: #fff;
  text-align: center;
}

.page-8ki-nh-c-i__cta-section .page-8ki-nh-c-i__section-title {
  color: #fff;
}

.page-8ki-nh-c-i__cta-section .page-8ki-nh-c-i__section-description {
  color: #eee;
  margin-bottom: 50px;
}

.page-8ki-nh-c-i__cta-section .page-8ki-nh-c-i__button--large {
  background-color: #fff;
  color: #e44d26;
  border-color: #fff;
}

.page-8ki-nh-c-i__cta-section .page-8ki-nh-c-i__button--large:hover {
  background-color: #f0f0f0;
  color: #c93b1f;
}

/* Floating Buttons */
.page-8ki-nh-c-i__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-8ki-nh-c-i__floating-button {
  display: block;
  width: 120px;
  padding: 10px 0;
  border-radius: 30px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-size: 1em;
  box-sizing: border-box;
}

.page-8ki-nh-c-i__floating-button--register {
  background-color: #e44d26;
  color: #fff;
}

.page-8ki-nh-c-i__floating-button--register:hover {
  background-color: #ff6633;
  transform: translateY(-3px);
}

.page-8ki-nh-c-i__floating-button--login {
  background-color: #4a4a4a;
  color: #fff;
}

.page-8ki-nh-c-i__floating-button--login:hover {
  background-color: #666666;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-8ki-nh-c-i__hero-title {
    font-size: 3em;
  }
  .page-8ki-nh-c-i__hero-subtitle {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-8ki-nh-c-i__container {
    padding: 15px;
  }

  .page-8ki-nh-c-i__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-8ki-nh-c-i__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-8ki-nh-c-i__hero-section {
    height: 500px;
  }
  .page-8ki-nh-c-i__hero-title {
    font-size: 2.2em;
  }
  .page-8ki-nh-c-i__hero-subtitle {
    font-size: 1.1em;
  }
  .page-8ki-nh-c-i__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-8ki-nh-c-i__button {
    width: 80%; /* Make buttons wider on mobile */
    margin: 0 auto;
  }

  /* List item responsive requirements */
  .page-8ki-nh-c-i__about-grid,
  .page-8ki-nh-c-i__product-grid,
  .page-8ki-nh-c-i__promo-grid,
  .page-8ki-nh-c-i__news-grid,
  .page-8ki-nh-c-i__why-choose-list {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }
  
  .page-8ki-nh-c-i__about-item,
  .page-8ki-nh-c-i__product-card,
  .page-8ki-nh-c-i__promo-card,
  .page-8ki-nh-c-i__news-article,
  .page-8ki-nh-c-i__why-choose-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px !important; /* Adjust padding for mobile */
  }

  .page-8ki-nh-c-i__why-choose-list {
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Text wrapping for lists and cards */
  .page-8ki-nh-c-i__product-title,
  .page-8ki-nh-c-i__product-description,
  .page-8ki-nh-c-i__promo-title,
  .page-8ki-nh-c-i__promo-text,
  .page-8ki-nh-c-i__news-title,
  .page-8ki-nh-c-i__news-excerpt,
  .page-8ki-nh-c-i__why-choose-item p,
  .page-8ki-nh-c-i__faq-question-title,
  .page-8ki-nh-c-i__faq-answer p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  /* Image responsive optimization */
  .page-8ki-nh-c-i__hero-background-image,
  .page-8ki-nh-c-i__about-image,
  .page-8ki-nh-c-i__product-image,
  .page-8ki-nh-c-i__promo-image,
  .page-8ki-nh-c-i__news-image {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-8ki-nh-c-i__about-item,
  .page-8ki-nh-c-i__product-card,
  .page-8ki-nh-c-i__promo-card,
  .page-8ki-nh-c-i__news-article {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .page-8ki-nh-c-i__floating-buttons {
    flex-direction: row;
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 30px);
    justify-content: space-around;
  }

  .page-8ki-nh-c-i__floating-button {
    width: 48%; /* Adjust width for two buttons */
    padding: 12px 0;
    font-size: 0.95em;
  }

  .page-8ki-nh-c-i__faq-question {
    padding: 12px 15px;
  }
  .page-8ki-nh-c-i__faq-question-title {
    font-size: 1.1em;
  }
  .page-8ki-nh-c-i__faq-answer {
    padding: 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-8ki-nh-c-i__hero-title {
    font-size: 1.8em;
  }
  .page-8ki-nh-c-i__hero-subtitle {
    font-size: 1em;
  }
  .page-8ki-nh-c-i__button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-8ki-nh-c-i__section-title {
    font-size: 1.8em;
  }
}
  