/* style/resources-latest-guide-tai-ae888.css */

/* Base styles */
.page-resources-latest-guide-tai-ae888 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #0a0a0a, so text is white */
  background-color: transparent; /* Inherit from body */
}

.page-resources-latest-guide-tai-ae888__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-latest-guide-tai-ae888__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-latest-guide-tai-ae888__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-latest-guide-tai-ae888__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-resources-latest-guide-tai-ae888__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, #017439, #0d3820);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-latest-guide-tai-ae888__hero-content {
  max-width: 900px;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-latest-guide-tai-ae888__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-latest-guide-tai-ae888__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-latest-guide-tai-ae888__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-top: 20px;
  z-index: 1;
}

.page-resources-latest-guide-tai-ae888__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Call to Action Buttons */
.page-resources-latest-guide-tai-ae888__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.page-resources-latest-guide-tai-ae888__btn-primary,
.page-resources-latest-guide-tai-ae888__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-guide-tai-ae888__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-latest-guide-tai-ae888__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-resources-latest-guide-tai-ae888__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-latest-guide-tai-ae888__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

/* Benefits Grid */
.page-resources-latest-guide-tai-ae888__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-latest-guide-tai-ae888__benefit-item {
  background: rgba(255, 255, 255, 0.08); /* Light transparent background for dark body */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
  height: 100%; /* Ensure equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-resources-latest-guide-tai-ae888__benefit-item:hover {
  transform: translateY(-10px);
}

.page-resources-latest-guide-tai-ae888__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 8px;
  display: block;
}

.page-resources-latest-guide-tai-ae888__benefit-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #017439; /* Use brand color for titles */
}

.page-resources-latest-guide-tai-ae888__benefit-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Download Steps */
.page-resources-latest-guide-tai-ae888__download-steps .page-resources-latest-guide-tai-ae888__section-title {
  margin-bottom: 40px;
}

.page-resources-latest-guide-tai-ae888__download-method {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-guide-tai-ae888__download-method:nth-child(even) {
  flex-direction: row-reverse;
}

.page-resources-latest-guide-tai-ae888__method-title {
  font-size: 2em;
  color: #017439;
  margin-bottom: 30px;
  text-align: left;
  width: 100%;
}

.page-resources-latest-guide-tai-ae888__steps-list {
  flex: 1;
  text-align: left;
}

.page-resources-latest-guide-tai-ae888__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.page-resources-latest-guide-tai-ae888__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #017439;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-resources-latest-guide-tai-ae888__step-text {
  flex: 1;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-latest-guide-tai-ae888__download-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Troubleshooting */
.page-resources-latest-guide-tai-ae888__troubleshooting-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-guide-tai-ae888__troubleshooting-list li {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-guide-tai-ae888__troubleshooting-list li strong {
  color: #017439;
}

/* Features Grid */
.page-resources-latest-guide-tai-ae888__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-latest-guide-tai-ae888__feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
  height: 100%; /* Ensure equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-resources-latest-guide-tai-ae888__feature-card:hover {
  transform: translateY(-10px);
}

.page-resources-latest-guide-tai-ae888__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 8px;
  display: block;
}

.page-resources-latest-guide-tai-ae888__feature-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #017439;
}

.page-resources-latest-guide-tai-ae888__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Promotions List */
.page-resources-latest-guide-tai-ae888__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-guide-tai-ae888__promo-list li {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-guide-tai-ae888__promo-list li strong {
  color: #017439;
}

/* FAQ Section */
.page-resources-latest-guide-tai-ae888__faq-section {
  background: linear-gradient(135deg, #0d3820, #017439);
  padding: 80px 0;
}

.page-resources-latest-guide-tai-ae888__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-resources-latest-guide-tai-ae888__faq-item {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-latest-guide-tai-ae888__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: #017439;
  transition: background-color 0.3s ease;
}

.page-resources-latest-guide-tai-ae888__faq-question:hover {
  background-color: #005a2d;
}

.page-resources-latest-guide-tai-ae888__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-latest-guide-tai-ae888__faq-item.active .page-resources-latest-guide-tai-ae888__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-latest-guide-tai-ae888__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-resources-latest-guide-tai-ae888__faq-item.active .page-resources-latest-guide-tai-ae888__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-resources-latest-guide-tai-ae888__faq-answer p {
  margin: 0;
  font-size: 1.1em;
  color: #f0f0f0;
}

/* Conclusion Section */
.page-resources-latest-guide-tai-ae888__conclusion-section {
  padding-bottom: 80px;
}

/* Image and Video responsiveness */
.page-resources-latest-guide-tai-ae888 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-resources-latest-guide-tai-ae888 video,
.page-resources-latest-guide-tai-ae888__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-resources-latest-guide-tai-ae888__video-section,
.page-resources-latest-guide-tai-ae888__video-container,
.page-resources-latest-guide-tai-ae888__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-latest-guide-tai-ae888__hero-title {
    font-size: 3em;
  }
  .page-resources-latest-guide-tai-ae888__hero-description {
    font-size: 1.2em;
  }
  .page-resources-latest-guide-tai-ae888__section-title {
    font-size: 2em;
  }
  .page-resources-latest-guide-tai-ae888__download-method {
    flex-direction: column;
  }
  .page-resources-latest-guide-tai-ae888__download-method:nth-child(even) {
    flex-direction: column;
  }
  .page-resources-latest-guide-tai-ae888__download-image {
    max-width: 80%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-guide-tai-ae888__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 30px;
  }
  .page-resources-latest-guide-tai-ae888__hero-title {
    font-size: 2.2em;
  }
  .page-resources-latest-guide-tai-ae888__hero-description {
    font-size: 1em;
  }
  .page-resources-latest-guide-tai-ae888__section {
    padding: 40px 0;
  }
  .page-resources-latest-guide-tai-ae888__section-title {
    font-size: 1.8em;
  }
  .page-resources-latest-guide-tai-ae888__text-block {
    font-size: 0.95em;
  }
  .page-resources-latest-guide-tai-ae888__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-latest-guide-tai-ae888__btn-primary,
  .page-resources-latest-guide-tai-ae888__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-latest-guide-tai-ae888__benefit-item,
  .page-resources-latest-guide-tai-ae888__feature-card {
    padding: 20px;
  }
  .page-resources-latest-guide-tai-ae888__benefit-title,
  .page-resources-latest-guide-tai-ae888__feature-title {
    font-size: 1.2em;
  }

  .page-resources-latest-guide-tai-ae888__download-method {
    padding: 30px 20px;
  }
  .page-resources-latest-guide-tai-ae888__method-title {
    font-size: 1.6em;
  }
  .page-resources-latest-guide-tai-ae888__step-text {
    font-size: 1em;
  }
  .page-resources-latest-guide-tai-ae888__download-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-latest-guide-tai-ae888__troubleshooting-list li,
  .page-resources-latest-guide-tai-ae888__promo-list li {
    padding: 15px;
    font-size: 1em;
  }

  .page-resources-latest-guide-tai-ae888__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-latest-guide-tai-ae888__faq-answer {
    padding: 15px 20px;
  }
  .page-resources-latest-guide-tai-ae888__faq-answer p {
    font-size: 1em;
  }

  /* Ensure all image and video containers are responsive */
  .page-resources-latest-guide-tai-ae888 img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-resources-latest-guide-tai-ae888 video,
  .page-resources-latest-guide-tai-ae888__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-latest-guide-tai-ae888__section,
  .page-resources-latest-guide-tai-ae888__card,
  .page-resources-latest-guide-tai-ae888__container,
  .page-resources-latest-guide-tai-ae888__download-method,
  .page-resources-latest-guide-tai-ae888__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-resources-latest-guide-tai-ae888__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-latest-guide-tai-ae888__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-latest-guide-tai-ae888__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-resources-latest-guide-tai-ae888__benefits-grid, .page-resources-latest-guide-tai-ae888__features-grid {
    grid-template-columns: 1fr;
  }
}