/* style/-g.css */
.page--g {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e5d1bb; /* Light text for dark background, derived from complementary of #1A2E44 */
  background-color: #1A2E44; /* Main background color */
}

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

/* Hero Section */
.page--g .hero-section {
  background: linear-gradient(135deg, #1A2E44, #3a5c81); /* Gradient using main color and a slightly lighter variant */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page--g .hero-content {
  max-width: 800px;
}

.page--g .hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary color for titles */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page--g .highlight {
  color: #e5d1bb; /* Contrasting light color */
}

.page--g .hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e5d1bb;
}

.page--g .hero-link {
  color: #FFD700;
  text-decoration: underline;
}

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

.page--g .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

.page--g .btn-primary {
  background-color: #FFD700; /* Auxiliary color for primary button */
  color: #1A2E44; /* Main color for text on primary button */
  border: none;
}

.page--g .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page--g .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page--g .btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-2px);
}

.page--g .hero-image-wrapper {
  margin-top: 50px;
}

.page--g .hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  filter: none; /* Ensure no filter changes image color */
}

/* General Section Styling */
.page--g .about-section, .page--g .guide-section, .page--g .benefits-section, .page--g .cta-bottom-section {
  padding: 80px 0;
  text-align: center;
}

.page--g .section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

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

.page--g .text-content {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #e5d1bb;
}

.page--g .content-link {
  color: #FFD700;
  text-decoration: underline;
}

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

.page--g .feature-item, .page--g .benefit-item {
  background-color: #2b425b; /* Slightly lighter shade of main color for card backgrounds */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page--g .feature-item:hover, .page--g .benefit-item:hover {
  transform: translateY(-5px);
}

.page--g .feature-icon, .page--g .benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: none; /* Ensure no filter changes image color */
}

.page--g .feature-title, .page--g .benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page--g .feature-description, .page--g .benefit-description {
  font-size: 1em;
  color: #e5d1bb;
}

/* Guide Section */
.page--g .guide-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page--g .guide-item {
  background-color: #2b425b;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page--g .guide-step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page--g .guide-step-description {
  font-size: 1em;
  color: #e5d1bb;
}

.page--g .guide-cta, .page--g .cta-actions {
  margin-top: 50px;
}

/* Bottom CTA Section */
.page--g .cta-bottom-section {
  background-color: #1A2E44;
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page--g .hero-title {
    font-size: 2.5em;
  }

  .page--g .hero-description {
    font-size: 1em;
  }

  .page--g .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page--g .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page--g .section-title {
    font-size: 2em;
  }

  .page--g .feature-grid, .page--g .benefits-grid {
    grid-template-columns: 1fr;
  }

  .page--g .feature-item, .page--g .benefit-item {
    padding: 25px;
  }

  .page--g .guide-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page--g .hero-title {
    font-size: 2em;
  }

  .page--g .hero-description {
    font-size: 0.9em;
  }

  .page--g .section-title {
    font-size: 1.8em;
  }

  .page--g .feature-title, .page--g .benefit-title {
    font-size: 1.4em;
  }

  .page--g .guide-step-title {
    font-size: 1.2em;
  }
}