:root {
  --main-color: #11A84E;
  --secondary-color: #22C768;
  --bg-color-card: #11271B;
  --bg-color-primary: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-blog-latest-tele789-access {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color, will be #F2FFF6 */
  background-color: var(--bg-color-primary); /* #08160F */
}

/* General Section Styling */
.page-blog-latest-tele789-access__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-latest-tele789-access__section--dark {
  background-color: var(--bg-color-card); /* #11271B */
}

/* Hero Section */
.page-blog-latest-tele789-access__hero-section {
  background-color: var(--bg-color-primary);
  color: var(--text-main);
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
}

.page-blog-latest-tele789-access__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-top: 20px; /* Space between text and image */
  order: 1; /* Image first */
}

.page-blog-latest-tele789-access__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-latest-tele789-access__hero-content {
  order: 2; /* Content second */
  max-width: 800px;
  margin-bottom: 30px;
}

.page-blog-latest-tele789-access__hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color); /* Use gold for emphasis */
  letter-spacing: 0.05em;
}

.page-blog-latest-tele789-access__hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-latest-tele789-access__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-blog-latest-tele789-access__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-tele789-access__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-latest-tele789-access__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-latest-tele789-access__btn--secondary {
  background-color: transparent;
  color: var(--main-color); /* #11A84E */
  border: 2px solid var(--main-color);
}

.page-blog-latest-tele789-access__btn--secondary:hover {
  background-color: var(--main-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Video Section */
.page-blog-latest-tele789-access__video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
}

.page-blog-latest-tele789-access__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px; /* Max width for video */
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 30px auto 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.page-blog-latest-tele789-access__video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-latest-tele789-access__video-caption {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Content Sections */
.page-blog-latest-tele789-access__content-area h2 {
  font-size: 2.2rem;
  color: var(--gold-color);
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-blog-latest-tele789-access__content-area h3 {
  font-size: 1.8rem;
  color: var(--main-color);
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-latest-tele789-access__content-area p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-blog-latest-tele789-access__content-area ul,
.page-blog-latest-tele789-access__content-area ol {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-latest-tele789-access__content-area ol {
  list-style: decimal;
}

.page-blog-latest-tele789-access__content-area ul li,
.page-blog-latest-tele789-access__content-area ol li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-blog-latest-tele789-access__content-area img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  object-fit: cover;
  max-width: 800px;
}

/* FAQ Section */
.page-blog-latest-tele789-access__faq-section {
  background-color: var(--bg-color-card); /* #11271B */
  padding: 60px 20px;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 12px;
}

.page-blog-latest-tele789-access__faq-section h2 {
  color: var(--gold-color);
  margin-bottom: 40px;
}

.page-blog-latest-tele789-access__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-latest-tele789-access__faq-item {
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-latest-tele789-access__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--deep-green-color); /* #0A4B2C */
  cursor: pointer;
  outline: none;
  list-style: none; /* Remove default marker */
}

.page-blog-latest-tele789-access__faq-item summary::-webkit-details-marker {
  display: none; /* Hide Chrome/Safari marker */
}

.page-blog-latest-tele789-access__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-tele789-access__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-latest-tele789-access__faq-item[open] summary {
  border-bottom: 1px solid var(--border-color);
}

.page-blog-latest-tele789-access__faq-answer {
  padding: 20px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  background-color: var(--bg-color-card);
}

/* Conclusion Section */
.page-blog-latest-tele789-access__conclusion-section {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-color-primary);
  color: var(--text-main);
}

.page-blog-latest-tele789-access__conclusion-section h2 {
  color: var(--gold-color);
  margin-bottom: 25px;
}

/* Global image styling for responsiveness */
.page-blog-latest-tele789-access img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Global container styling for responsiveness */
.page-blog-latest-tele789-access__section,
.page-blog-latest-tele789-access__container,
.page-blog-latest-tele789-access__hero-image-wrapper,
.page-blog-latest-tele789-access__video-section,
.page-blog-latest-tele789-access__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Color Contrast Enforcement */
.page-blog-latest-tele789-access h1,
.page-blog-latest-tele789-access h2 {
  color: var(--gold-color); /* Ensure high contrast on dark background */
}

.page-blog-latest-tele789-access h3 {
  color: var(--main-color); /* Ensure high contrast on dark background */
}

.page-blog-latest-tele789-access p,
.page-blog-latest-tele789-access ul li,
.page-blog-latest-tele789-access ol li,
.page-blog-latest-tele789-access__faq-answer {
  color: var(--text-secondary); /* A7D9B8, good contrast on #08160F and #11271B */
}

.page-blog-latest-tele789-access__btn--primary {
  color: #ffffff; /* White text on green gradient button */
}

.page-blog-latest-tele789-access__btn--secondary {
  color: var(--main-color); /* Green text on transparent/white button */
  background-color: transparent; /* Ensure transparent background for text color to show */
}
.page-blog-latest-tele789-access__btn--secondary:hover {
  color: #ffffff; /* White text on green background on hover */
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
  .page-blog-latest-tele789-access__section,
  .page-blog-latest-tele789-access__faq-section {
    padding: 30px 15px;
  }

  .page-blog-latest-tele789-access__hero-section {
    padding: 40px 15px 30px;
    padding-top: 10px; /* Small top padding */
  }

  .page-blog-latest-tele789-access__hero-content h1 {
    font-size: 2rem;
  }

  .page-blog-latest-tele789-access__hero-content p {
    font-size: 1rem;
  }

  .page-blog-latest-tele789-access__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-latest-tele789-access__btn {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-latest-tele789-access__content-area h2 {
    font-size: 1.8rem;
  }

  .page-blog-latest-tele789-access__content-area h3 {
    font-size: 1.5rem;
  }

  .page-blog-latest-tele789-access__content-area p,
  .page-blog-latest-tele789-access__content-area ul li,
  .page-blog-latest-tele789-access__content-area ol li,
  .page-blog-latest-tele789-access__faq-item summary,
  .page-blog-latest-tele789-access__faq-answer {
    font-size: 1rem;
  }

  /* Force image responsiveness on mobile */
  .page-blog-latest-tele789-access img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Force container responsiveness on mobile */
  .page-blog-latest-tele789-access__section,
  .page-blog-latest-tele789-access__card,
  .page-blog-latest-tele789-access__container,
  .page-blog-latest-tele789-access__hero-image-wrapper,
  .page-blog-latest-tele789-access__video-section,
  .page-blog-latest-tele789-access__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Adjust padding for video wrapper on mobile */
  .page-blog-latest-tele789-access__video-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-blog-latest-tele789-access__faq-item summary {
    padding: 15px;
  }
}