.page-index-why-choose-gk88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light background */
  background-color: var(--secondary-color, #FFFFFF); /* Default to white if var not found */
}

.page-index-why-choose-gk88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-why-choose-gk88__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-why-choose-gk88__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

/* Hero Section */
.page-index-why-choose-gk88__hero-section {
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 80px;
  background-color: #26A9E0;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-index-why-choose-gk88__hero-section .page-index-why-choose-gk88__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-index-why-choose-gk88__hero-content {
  flex: 1;
  min-width: 300px;
  z-index: 1;
}

.page-index-why-choose-gk88__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-index-why-choose-gk88__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-index-why-choose-gk88__hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-why-choose-gk88__hero-image-wrapper {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.page-index-why-choose-gk88__hero-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.page-index-why-choose-gk88__btn-primary,
.page-index-why-choose-gk88__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-why-choose-gk88__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-index-why-choose-gk88__btn-primary:hover {
  background-color: #d46a06;
  border-color: #d46a06;
  transform: translateY(-2px);
}

.page-index-why-choose-gk88__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-index-why-choose-gk88__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Feature Section */
.page-index-why-choose-gk88__feature-section {
  padding: 80px 0;
  background-color: var(--secondary-color, #FFFFFF);
}

.page-index-why-choose-gk88__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-why-choose-gk88__feature-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-why-choose-gk88__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-index-why-choose-gk88__feature-icon {
  width: 100%; /* Ensure images are not small icons */
  height: auto;
  max-width: 400px; /* Max width for feature images */
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-why-choose-gk88__feature-card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-why-choose-gk88__feature-card-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  text-align: left;
}

/* Video Section */
.page-index-why-choose-gk88__video-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

.page-index-why-choose-gk88__video-section .page-index-why-choose-gk88__section-title,
.page-index-why-choose-gk88__video-section .page-index-why-choose-gk88__section-description {
  color: #FFFFFF;
}

.page-index-why-choose-gk88__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%; /* Ensure video wrapper is 100% width */
  box-sizing: border-box;
}

.page-index-why-choose-gk88__video-wrapper .page-index-why-choose-gk88__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.page-index-why-choose-gk88__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  cursor: pointer;
}

/* CTA Section */
.page-index-why-choose-gk88__cta-section {
  padding: 80px 0;
  background-color: var(--secondary-color, #FFFFFF);
  text-align: center;
}

.page-index-why-choose-gk88__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* FAQ Section */
.page-index-why-choose-gk88__faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-index-why-choose-gk88__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-index-why-choose-gk88__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-why-choose-gk88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #fdfdfd;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
  list-style: none; /* For <summary> tag */
}

.page-index-why-choose-gk88__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for <summary> */
}

.page-index-why-choose-why-choose-gk88__faq-item[open] .page-index-why-choose-gk88__faq-question {
  background-color: #eef7fc;
}

.page-index-why-choose-gk88__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-index-why-choose-gk88__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-index-why-choose-gk88__faq-item[open] .page-index-why-choose-gk88__faq-toggle {
  transform: rotate(45deg);
}

.page-index-why-choose-gk88__faq-answer {
  padding: 15px 25px 25px 25px;
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  text-align: left;
}

/* General image responsiveness */
.page-index-why-choose-gk88 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-index-why-choose-gk88__container {
    padding: 0 15px;
  }

  .page-index-why-choose-gk88__section-title {
    font-size: 2em;
  }

  .page-index-why-choose-gk88__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    padding-bottom: 60px;
  }

  .page-index-why-choose-gk88__hero-section .page-index-why-choose-gk88__container {
    flex-direction: column;
    gap: 30px;
  }

  .page-index-why-choose-gk88__hero-title {
    font-size: 2.5em;
    text-align: center;
  }

  .page-index-why-choose-gk88__hero-description {
    font-size: 1em;
    text-align: center;
  }

  .page-index-why-choose-gk88__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-why-choose-gk88__btn-primary,
  .page-index-why-choose-gk88__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-index-why-choose-gk88__feature-section,
  .page-index-why-choose-gk88__video-section,
  .page-index-why-choose-gk88__cta-section,
  .page-index-why-choose-gk88__faq-section {
    padding: 60px 0;
  }

  .page-index-why-choose-gk88__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-index-why-choose-gk88__feature-card {
    padding: 25px;
  }

  .page-index-why-choose-gk88__video-wrapper {
    margin-top: 30px;
  }

  /* Mobile specific image, video, container rules */
  .page-index-why-choose-gk88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index-why-choose-gk88 video,
  .page-index-why-choose-gk88__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-index-why-choose-gk88__section,
  .page-index-why-choose-gk88__card,
  .page-index-why-choose-gk88__container,
  .page-index-why-choose-gk88__video-section,
  .page-index-why-choose-gk88__video-container,
  .page-index-why-choose-gk88__video-wrapper,
  .page-index-why-choose-gk88__cta-buttons,
  .page-index-why-choose-gk88__button-group,
  .page-index-why-choose-gk88__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
  
  .page-index-why-choose-gk88__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}