.page--g {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1a2a43;
  line-height: 1.6;
}

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

.page--g h1, .page--g h2, .page--g h3 {
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page--g h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Ensure high contrast */
}

.page--g h2 {
  font-size: 2.2em;
  margin-top: 40px;
  color: #FFD700; /* Ensure high contrast */
}

.page--g h3 {
  font-size: 1.6em;
  color: #FFD700; /* Ensure high contrast */
  margin-bottom: 15px;
}

.page--g p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page--g .text-center {
  text-align: center;
}

.page--g .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #0A1931;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page--g .cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.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: #0A1931;
}

.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%;
  margin-bottom: 30px;
}

.page--g .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page--g .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page--g .hero-content p {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 25px;
}

.page--g .section-intro, .page--g .section-bet-types, .page--g .section-guide, .page--g .section-advantages, .page--g .section-promotions, .page--g .section-faq, .page--g .section-contact-cta {
  padding: 60px 0;
  background-color: #0A1931;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.page--g .section-intro .feature-item {
  background-color: #1B2C47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page--g .section-intro .feature-item:hover {
  transform: translateY(-8px);
  background-color: #2a3e5c;
}

.page--g .section-intro .feature-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}

.page--g .section-intro .feature-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page--g .section-intro .feature-item p {
  color: #cccccc;
  font-size: 0.95em;
}

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

.page--g .card {
  background-color: #1B2C47;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page--g .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page--g .card h3 {
  color: #FFD700;
  font-size: 1.5em;
  padding: 20px 15px 10px;
  text-align: left;
}

.page--g .card p {
  color: #cccccc;
  font-size: 0.95em;
  padding: 0 15px 20px;
  text-align: left;
}

.page--g ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
  margin-top: 40px;
}

.page--g ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 30px;
  background-color: #1B2C47;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 70px; /* Space for the counter */
}

.page--g ol li::before {
  content: counter(my-awesome-counter);
  background-color: #FFD700;
  color: #0A1931;
  font-size: 1.8em;
  font-weight: bold;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 15px;
  top: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page--g ol li h3 {
  color: #FFD700;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}

.page--g ol li p {
  color: #cccccc;
  font-size: 1em;
}

.page--g .section-advantages ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page--g .section-advantages ul li {
  background-color: #1B2C47;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page--g .section-advantages ul li:hover {
  background-color: #2a3e5c;
}

.page--g .section-advantages ul li h3 {
  color: #FFD700;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}

.page--g .section-advantages ul li p {
  color: #cccccc;
}

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

.page--g .promo-card {
  background-color: #1B2C47;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page--g .promo-card h3 {
  color: #FFD700;
  font-size: 1.4em;
  padding: 20px 15px 10px;
}

.page--g .promo-card p {
  color: #cccccc;
  font-size: 0.9em;
  padding: 0 15px 20px;
}

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

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

.page--g .faq-list {
  margin-top: 40px;
}

/* FAQ default state - answer hidden */
.faq-item {
  margin-bottom: 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 15px;
  background: #1B2C47;
  border-radius: 0 0 5px 5px;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  background: #1B2C47;
  border-radius: 0 0 5px 5px;
}

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

/* Question style */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #0A1931;
  border: 1px solid #FFD700;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #1b2c47;
}

.faq-question h3 {
  color: #E0E0E0;
  text-align: left;
  margin: 0;
  font-size: 1.2em;
}

/* Toggle icon */
.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page--g-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page--g-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page--g-link-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.page--g-link-button:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page--g h1 {
    font-size: 2.4em;
  }
  .page--g h2 {
    font-size: 2em;
  }
  .page--g .hero-content p {
    font-size: 1em;
  }
  .page--g .feature-grid, .page--g .bet-type-cards, .page--g .promo-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page--g h1 {
    font-size: 2em;
  }
  .page--g h2 {
    font-size: 1.8em;
  }
  .page--g .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page--g .hero-image {
    margin-bottom: 20px;
  }
  .page--g .section-intro, .page--g .section-bet-types, .page--g .section-guide, .page--g .section-advantages, .page--g .section-promotions, .page--g .section-faq, .page--g .section-contact-cta {
    padding: 40px 0;
  }
  .page--g ol li {
    padding-left: 60px;
  }
  .page--g ol li::before {
    width: 40px;
    height: 40px;
    font-size: 1.6em;
    left: 10px;
    top: 20px;
  }
  .faq-question {
    padding: 12px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .page--g h1 {
    font-size: 1.8em;
  }
  .page--g h2 {
    font-size: 1.6em;
  }
  .page--g h3 {
    font-size: 1.3em;
  }
  .page--g .hero-image img {
    border-radius: 8px;
  }
  .page--g .feature-grid, .page--g .bet-type-cards, .page--g .promo-cards {
    grid-template-columns: 1fr;
  }
  .page--g .card-image {
    height: 180px;
  }
  .page--g .promo-image {
    height: 160px;
  }
}