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

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

.page--g .hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page--g .hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page--g .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: bold;
}

.page--g .hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page--g .cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333333;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page--g .cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  color: #ffffff;
}

.page--g .section-title {
  font-size: 2.5em;
  color: #0056b3;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page--g .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page--g .introduction-section, .page--g betting-types-section, .page--g guide-section, .page--g tips-section, .page--g promotions-section, .page--g security-support-section, .page--g faq-section, .page--g conclusion-section {
  padding: 60px 0;
}

.page--g introduction-section {
  background-color: #ffffff;
}

.page--g .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page--g .content-wrapper.reverse {
  flex-direction: row-reverse;
}

.page--g .text-content {
  flex: 1;
}

.page--g .image-content {
  flex: 1;
  min-width: 300px;
}

.page--g .content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page--g .sub-section-title {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page--g .list-advantages {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 20px;
}

.page--g .list-advantages li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page--g .list-advantages li strong {
  color: #0056b3;
}

.page--g .betting-types-section {
  background-color: #f9f9f9;
}

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

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

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

.page--g .betting-item-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page--g .betting-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
}

.page--g .text-center {
  text-align: center;
  margin-top: 30px;
}

.page--g .guide-section {
  background-color: #ffffff;
}

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

.page--g .step-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page--g .step-number {
  font-size: 3em;
  font-weight: bold;
  color: #007bff;
  opacity: 0.1;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 0;
}

.page--g .step-item h3 {
  position: relative;
  z-index: 1;
  font-size: 1.7em;
  color: #0056b3;
  margin-bottom: 15px;
}

.page--g .step-item p {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.page--g .step-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333333;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page--g .step-button:hover {
  background-color: #e0a800;
  color: #ffffff;
}

.page--g .guide-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page--g .tips-section {
  background-color: #f4f7f6;
}

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

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

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

.page--g .tip-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page--g .tip-title {
  font-size: 1.7em;
  color: #007bff;
  margin-bottom: 15px;
}

.page--g .promotions-section {
  background-color: #e6f2ff;
}

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

.page--g .promo-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #cce0ff;
}

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

.page--g .promo-title {
  font-size: 1.6em;
  color: #0056b3;
  margin-bottom: 15px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page--g .promo-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page--g .promo-button:hover {
  background-color: #0056b3;
}

.page--g .promo-note {
  font-style: italic;
  margin-top: 40px;
  color: #555555;
}

.page--g .security-support-section {
  background-color: #ffffff;
}

.page--g .faq-section {
  background-color: #f4f7f6;
}

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

/* FAQ default state - answer hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Question styling */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 10px; /* Space between FAQ items */
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333333;
}

/* Toggle icon */
.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #007bff;
}

.page--g .conclusion-section {
  padding: 60px 0;
  background-color: #e6f2ff;
  text-align: center;
}

.page--g .conclusion-section p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
}

.page--g a {
  color: #007bff;
  text-decoration: none;
}

.page--g a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page--g .hero-title {
    font-size: 2.5em;
  }
  .page--g .hero-description {
    font-size: 1.1em;
  }
  .page--g .section-title {
    font-size: 2em;
  }
  .page--g .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page--g .content-wrapper.reverse {
    flex-direction: column;
  }
  .page--g .betting-grid, .page--g .step-by-step, .page--g .tips-grid, .page--g .promo-grid {
    grid-template-columns: 1fr;
  }
  .page--g .sub-section-title {
    font-size: 1.6em;
  }
  .page--g .betting-item-title, .page--g .tip-title, .page--g .promo-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page--g .hero-title {
    font-size: 2em;
  }
  .page--g .hero-description {
    font-size: 1em;
  }
  .page--g .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page--g .section-title {
    font-size: 1.8em;
  }
  .page--g .introduction-section, .page--g betting-types-section, .page--g guide-section, .page--g tips-section, .page--g promotions-section, .page--g security-support-section, .page--g faq-section, .page--g conclusion-section {
    padding: 40px 0;
  }
  .faq-question {
    padding: 12px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 18px;
  }
  .page--g .sub-section-title {
    font-size: 1.4em;
  }
  .page--g .betting-item-title, .page--g .tip-title, .page--g .promo-title {
    font-size: 1.3em;
  }
  .page--g .promo-title {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .page--g .hero-title {
    font-size: 1.8em;
  }
  .page--g .section-title {
    font-size: 1.6em;
  }
  .page--g .sub-section-title {
    font-size: 1.3em;
  }
  .page--g .betting-item-title, .page--g .tip-title, .page--g .promo-title {
    font-size: 1.2em;
  }
  .page--g .list-advantages li {
    font-size: 0.95em;
  }
  .page--g .step-item p {
    font-size: 0.95em;
  }
  .page--g .faq-question h3 {
    font-size: 1em;
  }
}