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

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

.page--g__section {
  padding: 60px 0;
  text-align: center;
}

.page--g__section--dark {
  background-color: #0A2463;
  color: #ffffff;
}

.page--g__section--dark .page--g__section-title,
.page--g__section--dark .page--g__text,
.page--g__section--dark .page--g__step-title,
.page--g__section--dark .page--g__step-description,
.page--g__section--dark .page--g__link-inline {
  color: #ffffff;
}

.page--g__section--dark .page--g__link-inline:hover {
  color: #E3BA2E;
}

.page--g__section--alt-bg {
  background-color: #eaeaea;
}

.page--g__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1a3c7c 100%);
  padding: 100px 0 60px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.page--g__hero-section > .page--g__container {
  position: relative;
  z-index: 1;
}

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

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

.page--g__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page--g__section--dark .page--g__section-title {
  color: #E3BA2E;
}

.page--g__text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #555;
}

.page--g__section--dark .page--g__text {
  color: #e0e0e0;
}

.page--g__link-inline {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page--g__link-inline:hover {
  color: #E3BA2E;
  text-decoration: none;
}

.page--g__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page--g__btn--primary {
  background-color: #E3BA2E;
  color: #0A2463;
}

.page--g__btn--primary:hover {
  background-color: #d1a82a;
  color: #000;
}

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

.page--g__btn--secondary:hover {
  background-color: #1a3c7c;
  color: #ffffff;
  border-color: #ffffff;
}

.page--g__btn--small {
  padding: 10px 20px;
  font-size: 1em;
  margin: 5px;
}

.page--g__btn--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page--g__features-grid,
.page--g__steps-grid,
.page--g__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page--g__feature-item,
.page--g__step-item,
.page--g__tip-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__section--dark .page--g__step-item {
  background-color: #1a3c7c;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page--g__feature-title,
.page--g__step-title,
.page--g__tip-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page--g__section--dark .page--g__step-title {
  color: #E3BA2E;
}

.page--g__feature-description,
.page--g__step-description,
.page--g__tip-description {
  font-size: 1em;
  color: #666;
}

.page--g__section--dark .page--g__step-description {
  color: #e0e0e0;
}

.page--g__step-number {
  width: 40px;
  height: 40px;
  background-color: #E3BA2E;
  color: #0A2463;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page--g__list,
.page--g__promo-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page--g__list-item,
.page--g__promo-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
  border-left: 5px solid #0A2463;
}

.page--g__section--dark .page--g__list-item,
.page--g__section--dark .page--g__promo-item {
  background-color: #0A2463;
  color: #ffffff;
  border-left-color: #E3BA2E;
}

.page--g__list-item strong {
  color: #0A2463;
}

.page--g__section--dark .page--g__list-item strong {
  color: #E3BA2E;
}

.page--g__content-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page--g__content-image--promo {
    max-width: 70%;
}

.page--g__section--final-cta {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 0;
}

.page--g__section--final-cta .page--g__section-title,
.page--g__section--final-cta .page--g__text {
  color: #ffffff;
}

.page--g__section--final-cta .page--g__link-inline {
  color: #E3BA2E;
}

.page--g__section--final-cta .page--g__link-inline:hover {
  color: #ffffff;
}

.page--g__copyright {
  margin-top: 40px;
  font-size: 0.9em;
  color: #a0a0a0;
}

@media (max-width: 768px) {
  .page--g__hero-title {
    font-size: 2.5em;
  }
  .page--g__hero-description {
    font-size: 1em;
  }
  .page--g__section-title {
    font-size: 2em;
  }
  .page--g__text {
    font-size: 1em;
  }
  .page--g__features-grid,
  .page--g__steps-grid,
  .page--g__tips-grid {
    grid-template-columns: 1fr;
  }
  .page--g__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page--g__hero-title {
    font-size: 2em;
  }
  .page--g__section-title {
    font-size: 1.8em;
  }
  .page--g__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page--g__content-image {
    max-width: 95%;
  }
  .page--g__content-image--promo {
    max-width: 85%;
}
}