/* style/resources-deep-dive-5566-bong88.css */
.page-resources-deep-dive-5566-bong88 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
}

.page-resources-deep-dive-5566-bong88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-deep-dive-5566-bong88__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-resources-deep-dive-5566-bong88__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-resources-deep-dive-5566-bong88__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-resources-deep-dive-5566-bong88__hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-resources-deep-dive-5566-bong88__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-resources-deep-dive-5566-bong88__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-deep-dive-5566-bong88__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* General Section Styles */
.page-resources-deep-dive-5566-bong88__section {
  padding: 80px 0;
}

.page-resources-deep-dive-5566-bong88__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-deep-dive-5566-bong88__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-resources-deep-dive-5566-bong88__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  color: #cccccc;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-deep-dive-5566-bong88__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-resources-deep-dive-5566-bong88__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-resources-deep-dive-5566-bong88__text-block {
  flex: 1;
  color: #f0f0f0;
}

.page-resources-deep-dive-5566-bong88__text-block p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-deep-dive-5566-bong88__image-block {
  flex: 1;
  text-align: center;
}

.page-resources-deep-dive-5566-bong88__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-resources-deep-dive-5566-bong88__btn-primary,
.page-resources-deep-dive-5566-bong88__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-deep-dive-5566-bong88__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-deep-dive-5566-bong88__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

.page-resources-deep-dive-5566-bong88__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-deep-dive-5566-bong88__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-deep-dive-5566-bong88__btn-link {
  display: inline-block;
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}

.page-resources-deep-dive-5566-bong88__btn-link:hover {
  text-decoration: underline;
}

.page-resources-deep-dive-5566-bong88__center-cta {
  text-align: center;
  margin-top: 50px;
}

.page-resources-deep-dive-5566-bong88__video-cta {
  margin-top: 30px;
}

/* Dark Section */
.page-resources-deep-dive-5566-bong88__dark-section {
  background-color: #1a1a2e;
  color: #f0f0f0;
}

.page-resources-deep-dive-5566-bong88__dark-section .page-resources-deep-dive-5566-bong88__section-title {
  color: #ffffff;
}

.page-resources-deep-dive-5566-bong88__dark-section .page-resources-deep-dive-5566-bong88__section-title::after {
  background-color: #ffffff;
}

.page-resources-deep-dive-5566-bong88__dark-section .page-resources-deep-dive-5566-bong88__section-subtitle {
  color: #cccccc;
}

/* Light Background Section */
.page-resources-deep-dive-5566-bong88__light-bg {
  background-color: #f5f5f5;
}

.page-resources-deep-dive-5566-bong88__light-bg .page-resources-deep-dive-5566-bong88__section-title {
  color: #333333;
}

.page-resources-deep-dive-5566-bong88__light-bg .page-resources-deep-dive-5566-bong88__text-block p,
.page-resources-deep-dive-5566-bong88__light-bg .page-resources-deep-dive-5566-bong88__numbered-list li {
  color: #333333;
}

/* Products Section Grid */
.page-resources-deep-dive-5566-bong88__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-deep-dive-5566-bong88__card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: #f0f0f0;
}

.page-resources-deep-dive-5566-bong88__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-resources-deep-dive-5566-bong88__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-resources-deep-dive-5566-bong88__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-deep-dive-5566-bong88__card-title a:hover {
  text-decoration: underline;
}

.page-resources-deep-dive-5566-bong88__card-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 15px;
  flex-grow: 1;
}

/* Advantages Section */
.page-resources-deep-dive-5566-bong88__grid-layout--advantages {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-resources-deep-dive-5566-bong88__advantage-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #f0f0f0;
}

.page-resources-deep-dive-5566-bong88__advantage-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
}

/* Registration Guide */
.page-resources-deep-dive-5566-bong88__numbered-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-resources-deep-dive-5566-bong88__numbered-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  color: #333333;
}

.page-resources-deep-dive-5566-bong88__numbered-list li::before {
  content: counter(list-item) ".";
  counter-increment: list-item;
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #26A9E0;
}

/* Video Section */
.page-resources-deep-dive-5566-bong88__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-deep-dive-5566-bong88__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

/* FAQ Section */
.page-resources-deep-dive-5566-bong88__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-deep-dive-5566-bong88__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-deep-dive-5566-bong88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-deep-dive-5566-bong88__faq-question:hover {
  background-color: #1e87b8;
}

.page-resources-deep-dive-5566-bong88__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-deep-dive-5566-bong88__faq-item.active .page-resources-deep-dive-5566-bong88__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-deep-dive-5566-bong88__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-deep-dive-5566-bong88__faq-item.active .page-resources-deep-dive-5566-bong88__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 20px !important;
}

.page-resources-deep-dive-5566-bong88__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-deep-dive-5566-bong88__hero-title {
    font-size: 3em;
  }

  .page-resources-deep-dive-5566-bong88__section-title {
    font-size: 2em;
  }

  .page-resources-deep-dive-5566-bong88__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-resources-deep-dive-5566-bong88__content-wrapper:nth-child(even) {
    flex-direction: column;
  }

  .page-resources-deep-dive-5566-bong88__image-block {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-resources-deep-dive-5566-bong88 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-deep-dive-5566-bong88__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-deep-dive-5566-bong88__hero-title {
    font-size: 2.2em;
  }

  .page-resources-deep-dive-5566-bong88__hero-description {
    font-size: 1em;
  }

  .page-resources-deep-dive-5566-bong88__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-deep-dive-5566-bong88__btn-primary,
  .page-resources-deep-dive-5566-bong88__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
  }

  .page-resources-deep-dive-5566-bong88__section {
    padding: 40px 0;
  }

  .page-resources-deep-dive-5566-bong88__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-deep-dive-5566-bong88__section-subtitle {
    margin-bottom: 30px;
  }

  .page-resources-deep-dive-5566-bong88__container {
    padding: 0 15px;
  }

  /* Mobile image responsiveness */
  .page-resources-deep-dive-5566-bong88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-deep-dive-5566-bong88__section,
  .page-resources-deep-dive-5566-bong88__card,
  .page-resources-deep-dive-5566-bong88__container,
  .page-resources-deep-dive-5566-bong88__video-section,
  .page-resources-deep-dive-5566-bong88__video-container,
  .page-resources-deep-dive-5566-bong88__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Mobile video responsiveness */
  .page-resources-deep-dive-5566-bong88 video,
  .page-resources-deep-dive-5566-bong88__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-deep-dive-5566-bong88__video-wrapper {
    padding-bottom: 75% !important; /* Adjust aspect ratio for mobile if needed, e.g., 4:3 */
  }

  .page-resources-deep-dive-5566-bong88__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-resources-deep-dive-5566-bong88__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-resources-deep-dive-5566-bong88__faq-item.active .page-resources-deep-dive-5566-bong88__faq-answer {
    padding: 15px !important;
  }
}