:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF; /* Assuming body background is white */
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-color: #EA7C07;
  --black: #000000;
  --header-offset: 120px; /* Default value, will be overridden by shared.css */
}

.page-resources-gk88-link-introduction {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: var(--secondary-color); /* Assuming body background is white */
}

/* Header spacing for main content */
.page-resources-gk88-link-introduction__hero-section {
  padding-top: var(--header-offset); /* Ensure hero section is below fixed header */
}

/* Hero Section */
.page-resources-gk88-link-introduction__hero-section {
  position: relative;
  width: 100%;
  height: 70vh; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 400px;
}

.page-resources-gk88-link-introduction__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-gk88-link-introduction__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-gk88-link-introduction__hero-content {
  position: relative;
  z-index: 3;
  color: var(--text-light);
  max-width: 900px;
  padding: 0 20px;
}

.page-resources-gk88-link-introduction__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light); /* White text for dark overlay */
}

.page-resources-gk88-link-introduction__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-light); /* White text for dark overlay */
}

.page-resources-gk88-link-introduction__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* General Sections */
.page-resources-gk88-link-introduction__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-resources-gk88-link-introduction__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources-gk88-link-introduction__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
}

/* Dark Background Sections */
.page-resources-gk88-link-introduction__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-gk88-link-introduction__dark-bg .page-resources-gk88-link-introduction__section-title {
  color: var(--text-light);
}

.page-resources-gk88-link-introduction__dark-bg .page-resources-gk88-link-introduction__text-block {
  color: var(--text-light);
}

/* Light Background Sections */
.page-resources-gk88-link-introduction__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-resources-gk88-link-introduction__light-bg .page-resources-gk88-link-introduction__section-title {
  color: var(--primary-color);
}

.page-resources-gk88-link-introduction__light-bg .page-resources-gk88-link-introduction__text-block {
  color: var(--text-dark);
}