
    /* General styles for the acb page */
.page-acb {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
  overflow-x: hidden;
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top for header offset */
}

.page-acb__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Dark blue for titles */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  padding: 0 15px;
  word-wrap: break-word;
}

.page-acb__section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  color: #555;
  padding: 0 15px;
  word-wrap: break-word;
}

/* Hero Section */
.page-acb__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height for mobile-first */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-acb__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  max-width: 100% !important; /* Ensure image responsiveness */
  box-sizing: border-box !important;
}

.page-acb__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: 2;
}

.page-acb__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-acb__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
  word-wrap: break-word;
}

.page-acb__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #eee;
  word-wrap: break-word;
}

.page-acb__hero-cta-button {
  background-color: #ffcc00; /* Yellow for CTA */
  color: #333;
  padding: 15px 30px;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.page-acb__hero-cta-button:hover {
  background-color: #e6b800;
}

/* Floating Buttons */
.page-acb__floating-buttons-wrapper {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 1000;
}

.page-acb__floating-button {
  background-color: #007bff; /* Blue for buttons */
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-acb__floating-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Product Grid */
.page-acb__products-section {
  padding: 40px 20px;
  background-color: #fff;
}

.page-acb__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-acb__product-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

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

.page-acb__product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  max-width: 100% !important; /* Ensure image responsiveness */
  box-sizing: border-box !important;
}

.page-acb__product-title {
  font-size: 1.5em;
  color: #0056b3;
  margin: 15px 10px 10px;
  word-wrap: break-word;
}

.page-acb__product-description {
  font-size: 1em;
  color: #666;
  padding: 0 15px 20px;
  flex-grow: 1;
  word-wrap: break-word;
}

/* Promotions Section */
.page-acb__promotions-section {
  padding: 60px 20px;
  background-color: #f0f4f8;
}

.page-acb__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-acb__promo-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

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

.page-acb__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  max-width: 100% !important; /* Ensure image responsiveness */
  box-sizing: border-box !important;
}

.page-acb__promo-title {
  font-size: 1.4em;
  color: #0056b3;
  margin: 15px 10px 10px;
  word-wrap: break-word;
}

.page-acb__promo-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 15px;
  flex-grow: 1;
  word-wrap: break-word;
}

.page-acb__promo-button {
  background-color: #ffcc00;
  color: #333;
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-acb__promo-button:hover {
  background-color: #e6b800;
}

/* Why Choose Section */
.page-acb__why-choose-section {
  padding: 60px 20px;
  background-color: #fff;
}

.page-acb__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-acb__feature-item {
  text-align: center;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-acb__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100% !important; /* Ensure image responsiveness */
  box-sizing: border-box !important;
}

.page-acb__feature-title {
  font-size: 1.3em;
  color: #0056b3;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.page-acb__feature-description {
  font-size: 0.95em;
  color: #666;
  flex-grow: 1;
  word-wrap: break-word;
}

/* About Us Section */
.page-acb__about-us-section {
  padding: 60px 20px;
  background-color: #f0f4f8;
}

.page-acb__about-content {
  display: flex;
  flex-direction: column; /* Stack on mobile */
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
}

.page-acb__about-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100% !important; /* Ensure image responsiveness */
  box-sizing: border-box !important;
}

.page-acb__about-text {
  font-size: 1.1em;
  color: #444;
  text-align: justify;
}

.page-acb__about-text p {
  margin-bottom: 15px;
  word-wrap: break-word;
}

/* FAQ Section */
.page-acb__faq-section {
  padding: 60px 20px;
  background-color: #fff;
}

.page-acb__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-acb__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-acb__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #e0e7ee; /* Light blue background for question */
  cursor: pointer;
  user-select: none;
  color: #0056b3;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-acb__faq-question:hover {
  background-color: #d0d8e2;
}

.page-acb__faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  pointer-events: none; /* Prevent h3 from interfering with click event */
  word-wrap: break-word;
  max-width: calc(100% - 30px); /* Leave space for toggle icon */
}

.page-acb__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  pointer-events: none; /* Prevent toggle icon from interfering with click event */
  transition: transform 0.3s ease;
}

.page-acb__faq-item.active .page-acb__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
}

.page-acb__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;
  background-color: #fff;
  color: #444;
}

.page-acb__faq-item.active .page-acb__faq-answer {
  max-height: 2000px !important; /* Sufficiently large value */
  padding: 20px !important;
  opacity: 1;
}

.page-acb__faq-answer p {
  margin: 0;
  word-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-acb__hero-section {
    height: 500px;
  }
  .page-acb__hero-title {
    font-size: 2.5em;
  }
  .page-acb__hero-description {
    font-size: 1.1em;
  }
  .page-acb__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-acb__hero-section {
    height: 400px;
  }
  .page-acb__hero-title {
    font-size: 2em;
  }
  .page-acb__hero-description {
    font-size: 1em;
  }
  .page-acb__hero-cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-acb__floating-buttons-wrapper {
    bottom: 15px;
    gap: 10px;
  }
  .page-acb__floating-button {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-acb__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-acb__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-acb__product-grid, .page-acb__promo-grid, .page-acb__features-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 20px;
  }

  /* List item mobile responsiveness */
  .page-acb__product-item, .page-acb__promo-item, .page-acb__feature-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 15px;
  }

  .page-acb__product-description, .page-acb__promo-description, .page-acb__feature-description {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-acb__about-content {
    flex-direction: column;
  }

  .page-acb__about-image {
    max-width: 100%;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-acb__faq-question {
    padding: 12px 15px;
  }
  .page-acb__faq-question h3 {
    font-size: 1em;
  }
  .page-acb__faq-answer {
    padding: 0 15px;
  }
  .page-acb__faq-item.active .page-acb__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-acb__hero-title {
    font-size: 1.8em;
  }
  .page-acb__hero-description {
    font-size: 0.9em;
  }
  .page-acb__hero-cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-acb__section-title {
    font-size: 1.5em;
  }
  .page-acb__floating-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}
  