/* style/g.css */
/* body đã padding-top: var(--header-offset) từ shared.css, không cần thêm ở đây */
.page-g {
  background-color: #08160F; /* Nền tối, Text Main: #F2FFF6 */
  color: #F2FFF6; /* Màu chữ chính cho toàn bộ trang */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-g__section-spacing {
  padding: 60px 0;
}

.page-g__section-title {
  font-size: clamp(28px, 4vw, 48px); /* H1 size constraint applied to H2 */
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-g__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}