:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-dark: #000000; /* Black for light backgrounds */
  --text-light: #ffffff; /* White for dark backgrounds */
  --background-light: #f8f8f8;
  --background-dark: #0a0a2a; /* Slightly lighter dark blue for sections */
  --button-bg: var(--primary-color);
  --button-text: var(--secondary-color);
  --button-hover-bg: #e6c200;
  --link-color: var(--secondary-color);
  --link-hover-color: var(--primary-color);
  --border-color: #e0e0e0;
}

.page--g {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
}

.page--g h1, .page--g h2, .page--g h3, .page--g h4, .page--g h5, .page--g h6 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page--g h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page--g h2 {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 30px;
}

.page--g h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page--g p {
  margin-bottom: 1em;
  font-size: 1.1em;
}

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

.page--g .bg-dark {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page--g .bg-dark h2, .page--g .bg-dark h3 {
  color: var(--primary-color);
}

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

/* Hero Section */
.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: linear-gradient(135deg, var(--secondary-color), #000050);
}

.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: 8px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page--g .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
}

.page--g .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page--g .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-bg);
  color: var(--button-text);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

/* Section Styling */
.page--g section {
  padding: 60px 0;
}

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

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

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

.page--g .benefit-item img {
  width: 250px; /* Minimum 200px */
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 4px;
}

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

.page--g .hall-card {
  background-color: #1a1a4a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-light);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page--g .hall-card:hover {
  transform: translateY(-5px);
  background-color: #2a2a6a;
}

.page--g .hall-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page--g .hall-card h3 {
  color: var(--primary-color);
  font-size: 1.5em;
}

.page--g .button-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page--g .button-secondary:hover {
  background: var(--button-hover-bg);
  transform: translateY(-1px);
}

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

.page--g .guide-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page--g .guide-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page--g .guide-item h3 {
  margin-top: 15px;
}

.page--g .button-primary {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page--g .button-primary:hover {
  background: #000060;
  transform: translateY(-1px);
}

.page--g .guide-image-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page--g .guide-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  min-width: 400px; /* Minimum 200px, but for a process image, larger is better */
  min-height: 300px;
  object-fit: cover;
}

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

.page--g .tip-item {
  background-color: #1a1a4a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page--g .tip-item h3 {
  color: var(--primary-color);
}

.page--g .tips-image-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page--g .tips-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  min-width: 400px; /* Minimum 200px */
  min-height: 300px;
  object-fit: cover;
}

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

.page--g .promo-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page--g .promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page--g .promo-card h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
}

/* FAQ Section */
.page--g .section-faq {
  padding-bottom: 80px;
}

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

.page--g .faq-item {
  margin-bottom: 15px;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a4a;
}

.page--g .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page--g .faq-question:hover {
  background: #000060;
}

.page--g .faq-question h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.25em;
}

.page--g .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page--g .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page--g .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  color: var(--text-light);
}

.page--g .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 25px;
}

.page--g .faq-item.active .faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page--g h1 {
    font-size: 2.4em;
  }

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

  .page--g h3 {
    font-size: 1.4em;
  }

  .page--g .hero-content p {
    font-size: 1.1em;
  }

  .page--g .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .page--g .benefits-grid, .page--g .hall-cards-grid, .page--g .step-by-step-guide, .page--g .tips-grid, .page--g .promo-cards-grid {
    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 h3 {
    font-size: 1.3em;
  }

  .page--g section {
    padding: 40px 0;
  }

  .page--g .hero-section {
    padding: 40px 15px;
  }

  .page--g .hero-image img {
    border-radius: 4px;
  }

  .page--g .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }

  .page--g .benefit-item, .page--g .hall-card, .page--g .guide-item, .page--g .tip-item, .page--g .promo-card {
    padding: 20px;
  }

  .page--g .guide-image-wrapper img, .page--g .tips-image-wrapper img {
    min-width: 250px;
    min-height: 200px;
  }
  
  .page--g .faq-question {
    padding: 15px 20px;
  }

  .page--g .faq-question h3 {
    font-size: 1.1em;
  }

  .page--g .faq-toggle {
    font-size: 1.8em;
  }

  .page--g .faq-answer {
    padding: 0 20px;
  }

  .page--g .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page--g h1 {
    font-size: 1.8em;
  }

  .page--g h2 {
    font-size: 1.6em;
  }

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

  .page--g .benefits-grid, .page--g .hall-cards-grid, .page--g .step-by-step-guide, .page--g .tips-grid, .page--g .promo-cards-grid {
    grid-template-columns: 1fr;
  }

  .page--g .guide-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    top: -15px;
  }

  .page--g .guide-item {
    padding-top: 50px;
  }
  
  .page--g .guide-image-wrapper img, .page--g .tips-image-wrapper img {
    min-width: 200px;
    min-height: 150px;
  }
}