/* style/blog-how-to-contact-hb88-customer-service.css */
:root {
  --hb88-primary-color: #11A84E;
  --hb88-secondary-color: #22C768;
  --hb88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --hb88-card-bg: #11271B;
  --hb88-background-color: #08160F;
  --hb88-text-main: #F2FFF6;
  --hb88-text-secondary: #A7D9B8;
  --hb88-border-color: #2E7A4E;
  --hb88-glow-color: #57E38D;
  --hb88-gold-color: #F2C14E;
  --hb88-divider-color: #1E3A2A;
  --hb88-deep-green-color: #0A4B2C;
}

.page-blog-how-to-contact-hb88-customer-service {
  background-color: var(--hb88-background-color);
  color: var(--hb88-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-contact-hb88-customer-service__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px;
  text-align: center;
  overflow: hidden;
}

.page-blog-how-to-contact-hb88-customer-service__hero-image {
  width: 100%;
  height: 675px; /* Fixed height for desktop to maintain aspect ratio */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-blog-how-to-contact-hb88-customer-service__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 20px; /* Space from top after image */
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text readability */
  border-radius: 8px;
}

.page-blog-how-to-contact-hb88-customer-service__main-title {
  color: var(--hb88-text-main);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}

.page-blog-how-to-contact-hb88-customer-service__hero-description {
  color: var(--hb88-text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-how-to-contact-hb88-customer-service__btn-primary,
.page-blog-how-to-contact-hb88-customer-service__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-how-to-contact-hb88-customer-service__btn-primary {
  background: var(--hb88-button-gradient);
  color: var(--hb88-text-main);
  border: 2px solid transparent;
  margin-right: 15px;
}

.page-blog-how-to-contact-hb88-customer-service__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-how-to-contact-hb88-customer-service__btn-secondary {
  background: var(--hb88-card-bg);
  color: var(--hb88-primary-color);
  border: 2px solid var(--hb88-primary-color);
}

.page-blog-how-to-contact-hb88-customer-service__btn-secondary:hover {
  background: var(--hb88-primary-color);
  color: var(--hb88-text-main);
}

.page-blog-how-to-contact-hb88-customer-service__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-how-to-contact-hb88-customer-service__section-title {
  color: var(--hb88-text-main);
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.2em;
}

.page-blog-how-to-contact-hb88-customer-service__section-description {
  color: var(--hb88-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
}

.page-blog-how-to-contact-hb88-customer-service__features-grid,
.page-blog-how-to-contact-hb88-customer-service__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-contact-hb88-customer-service__feature-card,
.page-blog-how-to-contact-hb88-customer-service__tip-card,
.page-blog-how-to-contact-hb88-customer-service__method-card,
.page-blog-how-to-contact-hb88-customer-service__step-item,
.page-blog-how-to-contact-hb88-customer-service__faq-item {
  background-color: var(--hb88-card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--hb88-border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-how-to-contact-hb88-customer-service__feature-icon,
.page-blog-how-to-contact-hb88-customer-service__tip-icon,
.page-blog-how-to-contact-hb88-customer-service__method-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-how-to-contact-hb88-customer-service__feature-title,
.page-blog-how-to-contact-hb88-customer-service__tip-title,
.page-blog-how-to-contact-hb88-customer-service__method-title,
.page-blog-how-to-contact-hb88-customer-service__step-title {
  color: var(--hb88-gold-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-blog-how-to-contact-hb88-customer-service__feature-text,
.page-blog-how-to-contact-hb88-customer-service__tip-text,
.page-blog-how-to-contact-hb88-customer-service__method-text,
.page-blog-how-to-contact-hb88-customer-service__step-text {
  color: var(--hb88-text-secondary);
  font-size: 1em;
  flex-grow: 1;
}

.page-blog-how-to-contact-hb88-customer-service__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-contact-hb88-customer-service__email-link {
  color: var(--hb88-primary-color);
  text-decoration: underline;
}

.page-blog-how-to-contact-hb88-customer-service__email-link:hover {
  color: var(--hb88-gold-color);
}

.page-blog-how-to-contact-hb88-customer-service__method-card .page-blog-how-to-contact-hb88-customer-service__btn-secondary {
  margin-top: 20px;
  width: auto;
  max-width: 100%;
}

.page-blog-how-to-contact-hb88-customer-service__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-contact-hb88-customer-service__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-contact-hb88-customer-service__faq-item {
  margin-bottom: 15px;
  text-align: left;
}

.page-blog-how-to-contact-hb88-customer-service__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--hb88-deep-green-color);
  color: var(--hb88-text-main);
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-how-to-contact-hb88-customer-service__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-contact-hb88-customer-service__faq-question:hover {
  background-color: var(--hb88-primary-color);
}

.page-blog-how-to-contact-hb88-customer-service__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-contact-hb88-customer-service__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
}

.page-blog-how-to-contact-hb88-customer-service__faq-answer {
  padding: 15px 20px;
  background-color: var(--hb88-card-bg);
  color: var(--hb88-text-secondary);
  border-top: 1px solid var(--hb88-divider-color);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

details[open] .page-blog-how-to-contact-hb88-customer-service__faq-question {
  background-color: var(--hb88-primary-color);
}

.page-blog-how-to-contact-hb88-customer-service__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--hb88-deep-green-color);
  border-top: 1px solid var(--hb88-border-color);
  border-bottom: 1px solid var(--hb88-border-color);
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 12px;
  box-sizing: border-box;
}

.page-blog-how-to-contact-hb88-customer-service__cta-title {
  color: var(--hb88-gold-color);
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-blog-how-to-contact-hb88-customer-service__cta-description {
  color: var(--hb88-text-secondary);
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px;
}

.page-blog-how-to-contact-hb88-customer-service__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-contact-hb88-customer-service__hero-image {
    height: 500px;
  }
  .page-blog-how-to-contact-hb88-customer-service__main-title {
    font-size: 2.5em;
  }
  .page-blog-how-to-contact-hb88-customer-service__section-title {
    font-size: 2em;
  }
  .page-blog-how-to-contact-hb88-customer-service__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-contact-hb88-customer-service {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-how-to-contact-hb88-customer-service__hero-section {
    padding: 10px 15px 40px;
  }
  .page-blog-how-to-contact-hb88-customer-service__hero-image {
    height: 400px;
  }
  .page-blog-how-to-contact-hb88-customer-service__hero-content {
    padding: 15px;
  }
  .page-blog-how-to-contact-hb88-customer-service__main-title {
    font-size: 1.8em;
  }
  .page-blog-how-to-contact-hb88-customer-service__hero-description {
    font-size: 1em;
  }
  .page-blog-how-to-contact-hb88-customer-service__btn-primary,
  .page-blog-how-to-contact-hb88-customer-service__btn-secondary {
    width: 100% !important;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-blog-how-to-contact-hb88-customer-service__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-blog-how-to-contact-hb88-customer-service__section {
    padding: 40px 15px;
  }
  .page-blog-how-to-contact-hb88-customer-service__section-title {
    font-size: 1.8em;
  }
  .page-blog-how-to-contact-hb88-customer-service__section-description {
    font-size: 0.95em;
  }
  .page-blog-how-to-contact-hb88-customer-service__features-grid,
  .page-blog-how-to-contact-hb88-customer-service__tips-grid,
  .page-blog-how-to-contact-hb88-customer-service__contact-methods,
  .page-blog-how-to-contact-hb88-customer-service__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-how-to-contact-hb88-customer-service__feature-card,
  .page-blog-how-to-contact-hb88-customer-service__tip-card,
  .page-blog-how-to-contact-hb88-customer-service__method-card,
  .page-blog-how-to-contact-hb88-customer-service__step-item,
  .page-blog-how-to-contact-hb88-customer-service__faq-item {
    padding: 20px;
  }
  .page-blog-how-to-contact-hb88-customer-service__feature-icon,
  .page-blog-how-to-contact-hb88-customer-service__tip-icon,
  .page-blog-how-to-contact-hb88-customer-service__method-icon {
    max-width: 200px;
  }
  .page-blog-how-to-contact-hb88-customer-service__feature-title,
  .page-blog-how-to-contact-hb88-customer-service__tip-title,
  .page-blog-how-to-contact-hb88-customer-service__method-title,
  .page-blog-how-to-contact-hb88-customer-service__step-title {
    font-size: 1.2em;
  }
  .page-blog-how-to-contact-hb88-customer-service__cta-section {
    padding: 50px 15px;
  }
  .page-blog-how-to-contact-hb88-customer-service__cta-title {
    font-size: 1.8em;
  }

  /* Mobile specific image and container rules */
  .page-blog-how-to-contact-hb88-customer-service img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-contact-hb88-customer-service__section,
  .page-blog-how-to-contact-hb88-customer-service__card,
  .page-blog-how-to-contact-hb88-customer-service__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-contact-hb88-customer-service__hero-section {
    padding-top: 10px !important;
  }
  .page-blog-how-to-contact-hb88-customer-service__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-how-to-contact-hb88-customer-service a[class*="button"],
  .page-blog-how-to-contact-hb88-customer-service a[class*="btn"] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-contact-hb88-customer-service__hero-image {
    width: 100%;
    height: auto; /* Allow height to adjust on mobile */
  }
}

/* Body background color from shared.css is dark, so text is light */
.page-blog-how-to-contact-hb88-customer-service__content-area p,
.page-blog-how-to-contact-hb88-customer-service__content-area li {
  color: var(--hb88-text-secondary);
}

.page-blog-how-to-contact-hb88-customer-service__faq-answer p {
  color: var(--hb88-text-secondary);
}