
    /* Base styles for the page */
.page-789-c {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll from fixed elements */
}

.page-789-c__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-789-c__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Accent color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-789-c__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-789-c__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 500px;
  padding-top: 10px; /* Small padding top, body has main padding-top */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-789-c__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Subtle overlay */
  max-width: 100%; /* Responsive image */
}

.page-789-c__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-789-c__hero-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-789-c__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-789-c__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-789-c__hero-button--register {
  background-color: #FFD700; /* Accent color */
  color: #1a1a1a; /* Dark text for accent background */
  border: 2px solid #FFD700;
}

.page-789-c__hero-button--register:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-789-c__hero-button--login {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-789-c__hero-button--login:hover {
  background-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
}

/* About Section */
.page-789-c__about-section {
  padding: 60px 0;
  background-color: #222222;
}

/* Products Section */
.page-789-c__products-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

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

.page-789-c__product-item {
  background-color: #2e2e2e;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-789-c__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  max-width: 100%; /* Ensure responsiveness */
}

.page-789-c__product-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 10px 10px;
}

.page-789-c__product-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 15px;
}

/* Promotion Section */
.page-789-c__promo-section {
  padding: 60px 0;
  background-color: #222222;
}

.page-789-c__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-789-c__promo-card {
  background-color: #2e2e2e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-789-c__promo-card:hover {
  transform: translateY(-5px);
}

.page-789-c__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  max-width: 100%; /* Ensure responsiveness */
}

.page-789-c__promo-card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin: 20px 15px 10px;
}

.page-789-c__promo-card-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 15px 20px;
  flex-grow: 1; /* Push action to bottom */
}

.page-789-c__promo-action {
  text-align: center;
  padding: 0 15px 20px;
}

.page-789-c__promo-text {
  color: #FFD700;
  font-weight: bold;
  cursor: default; /* Not a link, just text */
}

/* FAQ Section */
.page-789-c__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-789-c__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.page-789-c__faq-item {
  background-color: #2e2e2e;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-789-c__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #3a3a3a;
  color: #f0f0f0;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-789-c__faq-question:hover {
  background-color: #4a4a4a;
}

.page-789-c__faq-question-text {
  margin: 0;
  pointer-events: none; /* Prevent h3 from blocking click event */
  color: #FFD700;
  font-size: 1em; /* Adjust to match parent font size */
}

.page-789-c__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  pointer-events: none; /* Prevent span from blocking click event */
  transition: transform 0.3s ease;
}

.page-789-c__faq-item.active .page-789-c__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-789-c__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  color: #cccccc;
}

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

.page-789-c__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Floating Buttons */
.page-789-c__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-789-c__floating-button {
  display: block;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
  min-width: 100px; /* Ensure buttons have a minimum width */
}

.page-789-c__floating-button:hover {
  transform: translateY(-3px);
}

.page-789-c__floating-button--register {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-789-c__floating-button--register:hover {
  background-color: #e6c200;
}

.page-789-c__floating-button--login {
  background-color: #4a4a4a;
  color: #f0f0f0;
}

.page-789-c__floating-button--login:hover {
  background-color: #5a5a5a;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .page-789-c__hero-title {
    font-size: 2em;
  }

  .page-789-c__hero-subtitle {
    font-size: 1em;
  }

  .page-789-c__hero-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-789-c__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .page-789-c__product-grid,
  .page-789-c__promo-cards {
    grid-template-columns: 1fr; /* Stack items vertically */
    gap: 20px;
  }

  .page-789-c__product-item,
  .page-789-c__promo-card {
    margin: 0 10px; /* Add some side margin for cards */
  }

  /* List item mobile responsiveness - applies to product and promo cards effectively */
  .page-789-c__product-item,
  .page-789-c__promo-card {
    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;
    word-break: break-word !important;
  }

  .page-789-c__product-grid,
  .page-789-c__promo-cards,
  .page-789-c__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;
  }

  .page-789-c__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-789-c__faq-answer {
    padding: 15px 20px !important;
  }

  .page-789-c__floating-buttons {
    flex-direction: row; /* Buttons side-by-side on mobile */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px); /* Adjust width */
    bottom: 15px;
    justify-content: center;
    gap: 15px;
  }

  .page-789-c__floating-button {
    flex: 1; /* Distribute space evenly */
    max-width: 150px; /* Limit individual button width */
    padding: 10px 15px;
    font-size: 0.9em;
  }
}

@media (min-width: 769px) {
  .page-789-c__hero-section {
    min-height: 600px;
    padding-top: 40px;
  }

  .page-789-c__hero-title {
    font-size: 3.5em;
  }

  .page-789-c__hero-subtitle {
    font-size: 1.4em;
  }

  .page-789-c__hero-content {
    padding: 40px;
  }
}
  