/* style/-g.css */
.page--g {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page--g__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #0A2463, #3a5b9b);
  color: #ffffff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.page--g__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page--g__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page--g__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.page--g__hero-description {
  font-size: 1.25em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page--g__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page--g__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page--g__btn--primary {
  background-color: #E0B14A;
  color: #0A2463;
  border: 2px solid #E0B14A;
}

.page--g__btn--primary:hover {
  background-color: #f0c562;
  border-color: #f0c562;
  transform: translateY(-2px);
}

.page--g__btn--secondary {
  background-color: transparent;
  color: #E0B14A;
  border: 2px solid #E0B14A;
}

.page--g__btn--secondary:hover {
  background-color: #E0B14A;
  color: #0A2463;
  transform: translateY(-2px);
}

.page--g__btn--link {
  color: #0A2463;
  text-decoration: underline;
  font-weight: 600;
  padding: 0;
  border: none;
  background: none;
}

.page--g__btn--link:hover {
  color: #E0B14A;
}

.page--g__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.page--g__hero-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page--g__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.page--g__section-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 40px;
  font-weight: 700;
}

.page--g__highlight {
  color: #E0B14A;
}

.page--g__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.page--g__content-grid:nth-of-type(odd) {
  flex-direction: row-reverse;
}

.page--g__text-content {
  flex: 1;
}

.page--g__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555;
}

.page--g__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.page--g__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page--g__rule-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

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

.page--g__card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 20px;
  font-weight: 600;
}

.page--g__rule-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page--g__rule-card ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.page--g__rule-card ul li::before {
  content: '✓';
  color: #E0B14A;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page--g__disclaimer {
  margin-top: 30px;
  font-style: italic;
  color: #777;
  font-size: 0.95em;
}

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

.page--g__type-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

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

.page--g__type-card p {
  font-size: 1em;
  color: #666;
}

.page--g__strategy-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 800px;
  text-align: left;
}

.page--g__strategy-list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-left: 5px solid #E0B14A;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
}

.page--g__call-to-action {
  margin-top: 50px;
  background-color: #0A2463;
  color: #ffffff;
  padding: 40px;
  border-radius: 12px;
}

.page--g__call-to-action p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.page--g__advantage-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page--g__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page--g__advantage-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: 600;
}

.page--g__advantage-item p {
  font-size: 1em;
  color: #666;
}

.page--g__register-prompt {
  margin-top: 50px;
  background-color: #E0B14A;
  color: #0A2463;
  padding: 35px;
  border-radius: 12px;
}

.page--g__register-prompt p {
  font-size: 1.2em;
  margin-bottom: 25px;
  font-weight: 500;
}

.page--g__faq-items {
  margin-top: 40px;
  text-align: left;
}

.page--g__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.page--g__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page--g__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #E0B14A;
  transition: transform 0.3s ease;
}

.page--g__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page--g__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
}

.page--g__faq-answer.active {
  display: block;
}

.page--g__cta-bottom {
  background: linear-gradient(45deg, #0A2463, #2a4a8a);
  color: #ffffff;
  padding: 80px 20px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.page--g__cta-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  font-weight: 700;
  color: #ffffff;
}

.page--g__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Responsive adjustments */
@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-grid {
    flex-direction: column;
  }
  .page--g__content-grid:nth-of-type(odd) {
    flex-direction: column;
  }
  .page--g__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page--g__hero {
    padding: 40px 15px;
  }
  .page--g__hero-title {
    font-size: 2em;
  }
  .page--g__hero-description {
    font-size: 1em;
  }
  .page--g__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page--g__btn {
    width: 100%;
    padding: 12px 25px;
  }
  .page--g__section {
    padding: 40px 15px;
  }
  .page--g__section-title {
    font-size: 1.8em;
  }
  .page--g__card-title {
    font-size: 1.4em;
  }
  .page--g__cta-title {
    font-size: 1.8em;
  }
  .page--g__cta-description {
    font-size: 1em;
  }
  .page--g__advantage-title {
    font-size: 1.3em;
  }
  .page--g__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page--g__hero-title {
    font-size: 1.8em;
  }
  .page--g__section-title {
    font-size: 1.6em;
  }
  .page--g__type-card, .page--g__rule-card, .page--g__advantage-item {
    padding: 20px;
  }
  .page--g__strategy-list li {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page--g__register-prompt p {
    font-size: 1.1em;
  }
}