/* style/-g.css */
.page--g {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page--g__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.page--g__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--primary-color);
  color: #ffffff;
  overflow: hidden;
}

.page--g__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page--g__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page--g__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page--g__hero-content h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--accent-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page--g__hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page--g__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page--g__cta-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page--g__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

/* General Section Styling */
.page--g__section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.page--g__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page--g__section h2 {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page--g__section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page--g__section h3 {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page--g__section p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555555;
}

.page--g__section ul,
.page--g__section ol {
  margin-bottom: 20px;
  padding-left: 25px;
  color: #555555;
}

.page--g__section li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page--g__section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page--g__section a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Features Grid */
.page--g__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page--g__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page--g__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page--g__feature-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-top: 0;
}

.page--g__feature-item p {
  font-size: 1em;
  color: #666666;
}

/* Guide Steps */
.page--g__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page--g__step-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  padding-top: 60px;
}

.page--g__step-number {
  position: absolute;
  top: 20px;
  left: 25px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5em;
}

.page--g__guide-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 40px auto 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

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

.page--g__promotion-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page--g__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page--g__promotion-card h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin: 20px 15px 10px;
}

.page--g__promotion-card p {
  font-size: 1em;
  color: #666666;
  padding: 0 15px 20px;
}

.page--g__promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--accent-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.page--g__promo-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* Tips Section */
.page--g__tips ol {
  list-style-type: decimal;
  padding-left: 25px;
}

.page--g__tips li strong {
  color: var(--primary-color);
}

.page--g__tips-image {
  width: 100%;
  height: auto;
  max-width: 700px;
  display: block;
  margin: 40px auto 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* FAQ Section */
.page--g__faq-list {
  margin-top: 30px;
}

.page--g .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page--g .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page--g .faq-question:hover {
  background: #f5f5f5;
}

.page--g .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

.page--g .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page--g .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #fdfdfd;
  color: #666666;
}

.page--g .faq-answer p {
  margin: 15px 0;
  font-size: 1em;
}

.page--g .faq-item.active .faq-question {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page--g .faq-item.active .faq-question h3 {
  color: #ffffff;
}

.page--g .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.page--g .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Contact Section */
.page--g__contact ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.page--g__contact li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #555555;
}

.page--g__contact strong {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page--g__hero-content h1 {
    font-size: 2.5em;
  }
  .page--g__section h2 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page--g__hero-section {
    padding: 40px 15px;
  }
  .page--g__hero-content h1 {
    font-size: 2em;
  }
  .page--g__hero-content p {
    font-size: 1em;
  }
  .page--g__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page--g__cta-button--large {
    padding: 15px 40px;
    font-size: 18px;
  }
  .page--g__section {
    padding: 40px 0;
  }
  .page--g__section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page--g__section h3 {
    font-size: 1.4em;
  }
  .page--g__features-grid,
  .page--g__guide-steps,
  .page--g__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page--g__feature-item,
  .page--g__step-item,
  .page--g__promotion-card {
    padding: 20px;
  }
  .page--g .faq-question {
    padding: 15px;
  }
  .page--g .faq-question h3 {
    font-size: 1.1em;
  }
  .page--g .faq-toggle {
    font-size: 20px;
  }
  .page--g .faq-answer {
    padding: 10px 15px;
  }
  .page--g__contact li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page--g__hero-content h1 {
    font-size: 1.6em;
  }
  .page--g__hero-content p {
    font-size: 0.9em;
  }
  .page--g__cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }
  .page--g__cta-button--large {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page--g__section h2 {
    font-size: 1.5em;
  }
  .page--g__section h3 {
    font-size: 1.2em;
  }
  .page--g__section p,
  .page--g__section li {
    font-size: 0.95em;
  }
  .page--g__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page--g__step-item {
    padding-top: 50px;
  }
  .page--g__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
    top: 15px;
    left: 20px;
  }
  .page--g__promotion-image {
    height: 150px;
  }
  .page--g__promotion-card h3 {
    font-size: 1.3em;
  }
  .page--g__promo-button {
    padding: 8px 20px;
    font-size: 14px;
  }
}