
    /* General styling for the page */
.page-g-m-1 {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f4f7f6;
  line-height: 1.6;
}

/* Section common styles */
.page-g-m-1__section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-g-m-1__section-title {
  font-size: 2.5em;
  color: #1a237e; /* Dark blue for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-g-m-1__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-g-m-1__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.3s ease;
  cursor: pointer;
  border: none;
}

.page-g-m-1__button--primary {
  background-color: #ff6f00; /* Orange */
  color: #fff;
}

.page-g-m-1__button--primary:hover {
  background-color: #e65100; /* Darker orange */
  transform: translateY(-2px);
}

.page-g-m-1__button--secondary {
  background-color: #1a237e; /* Dark blue */
  color: #fff;
  margin-left: 15px;
}

.page-g-m-1__button--secondary:hover {
  background-color: #0d47a1; /* Darker blue */
  transform: translateY(-2px);
}

/* Hero Section */
.page-g-m-1__hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* Responsive height */
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
  box-sizing: border-box;
}

.page-g-m-1__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-g-m-1__hero-overlay {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  max-width: 90%;
  color: #fff;
}

.page-g-m-1__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #ffeb3b; /* Yellow */
  line-height: 1.2;
}

.page-g-m-1__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-g-m-1__hero-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
}

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

.page-g-m-1__floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 100px;
}

.page-g-m-1__floating-button--register {
  background-color: #ff6f00; /* Orange */
}

.page-g-m-1__floating-button--register:hover {
  background-color: #e65100;
  transform: translateY(-3px);
}

.page-g-m-1__floating-button--login {
  background-color: #1a237e; /* Dark blue */
}

.page-g-m-1__floating-button--login:hover {
  background-color: #0d47a1;
  transform: translateY(-3px);
}

/* Product Showcase */
.page-g-m-1__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-g-m-1__product-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive lists */
}

.page-g-m-1__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-g-m-1__product-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #eee;
  max-width: 100%; /* Responsive image */
  height: auto; /* Responsive image */
}

.page-g-m-1__product-title {
  font-size: 1.8em;
  color: #1a237e;
  margin: 20px 15px 10px;
}

.page-g-m-1__product-text {
  font-size: 1em;
  color: #666;
  padding: 0 15px;
}

/* Promotions Section */
.page-g-m-1__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-g-m-1__promotion-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive lists */
}

.page-g-m-1__promotion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-g-m-1__promotion-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #eee;
  max-width: 100%; /* Responsive image */
  height: auto; /* Responsive image */
}

.page-g-m-1__promotion-title {
  font-size: 1.6em;
  color: #1a237e;
  margin: 20px 15px 10px;
}

.page-g-m-1__promotion-text {
  font-size: 1em;
  color: #666;
  padding: 0 15px;
}

.page-g-m-1__promotion-cta {
  margin-top: 50px;
}

.page-g-m-1__promotion-cta p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #333;
}

/* Why Us Section */
.page-g-m-1__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-g-m-1__feature-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive lists */
}

.page-g-m-1__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-g-m-1__feature-image {
  width: 150px; /* Larger image for feature */
  height: auto;
  margin-bottom: 20px;
  max-width: 100%; /* Responsive image */
}

.page-g-m-1__feature-title {
  font-size: 1.5em;
  color: #ff6f00;
  margin-bottom: 10px;
}

.page-g-m-1__feature-text {
  font-size: 1em;
  color: #666;
}

/* FAQ Section */
.page-g-m-1__faq-container {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-g-m-1__faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-sizing: border-box; /* Crucial for responsive lists */
}

.page-g-m-1__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  background-color: #1a237e; /* Dark blue */
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-g-m-1__faq-question:hover {
  background-color: #0d47a1; /* Darker blue */
}

.page-g-m-1__faq-question-text {
  margin: 0;
  flex-grow: 1;
  pointer-events: none; /* Prevent text from blocking click on parent div */
}

.page-g-m-1__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent toggle from blocking click on parent div */
}

.page-g-m-1__faq-item.active .page-g-m-1__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' or '-' */
}

.page-g-m-1__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #fcfcfc;
  color: #333;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
}

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

.page-g-m-1__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Call to Action Section */
.page-g-m-1__cta-section {
  background-color: #1a237e; /* Dark blue */
  color: #fff;
  padding: 60px 20px;
}

.page-g-m-1__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffeb3b; /* Yellow */
}

.page-g-m-1__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-g-m-1__hero-title {
    font-size: 3em;
  }
  .page-g-m-1__hero-subtitle {
    font-size: 1.1em;
  }
  .page-g-m-1__section-title {
    font-size: 2em;
  }
  .page-g-m-1__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-g-m-1__hero-section {
    height: 50vh;
    min-height: 350px;
  }
  .page-g-m-1__hero-overlay {
    padding: 20px;
  }
  .page-g-m-1__hero-title {
    font-size: 2.5em;
  }
  .page-g-m-1__hero-subtitle {
    font-size: 1em;
  }
  .page-g-m-1__hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  .page-g-m-1__button--secondary {
    margin-left: 0;
  }

  .page-g-m-1__section {
    padding: 30px 15px;
  }
  .page-g-m-1__section-title {
    font-size: 1.8em;
  }
  .page-g-m-1__section-description {
    font-size: 0.95em;
  }

  /* Floating buttons for mobile */
  .page-g-m-1__floating-buttons {
    bottom: 15px;
    gap: 10px;
  }
  .page-g-m-1__floating-button {
    padding: 8px 15px;
    font-size: 0.9em;
    min-width: 80px;
  }

  /* List items responsive */
  .page-g-m-1__product-grid,
  .page-g-m-1__promotion-grid,
  .page-g-m-1__features-grid {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
  }
  .page-g-m-1__product-card,
  .page-g-m-1__promotion-item,
  .page-g-m-1__feature-item,
  .page-g-m-1__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-g-m-1__product-text,
  .page-g-m-1__promotion-text,
  .page-g-m-1__feature-text,
  .page-g-m-1__faq-answer p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .page-g-m-1__product-image,
  .page-g-m-1__promotion-image,
  .page-g-m-1__feature-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-g-m-1__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-g-m-1__faq-answer {
    padding: 0 20px;
  }
  .page-g-m-1__faq-item.active .page-g-m-1__faq-answer {
    padding: 15px 20px !important;
  }
  .page-g-m-1__cta-title {
    font-size: 1.8em;
  }
  .page-g-m-1__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-g-m-1__hero-title {
    font-size: 2em;
  }
  .page-g-m-1__hero-subtitle {
    font-size: 0.9em;
  }
  .page-g-m-1__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-g-m-1__faq-question {
    font-size: 1em;
  }
}
  