/* style/blog-tdtc-app-features-review.css */
/* body 已 padding-top: var(--header-offset)；页面禁止再写该变量 */
.page-blog-tdtc-app-features-review {
  background-color: #08160F; /* Custom Background color */
  color: #F2FFF6; /* Custom Text Main color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-tdtc-app-features-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* HERO Section */
.page-blog-tdtc-app-features-review__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as per rules */
  padding-bottom: 60px;
  background-color: #08160F; /* Match body background */
}

.page-blog-tdtc-app-features-review__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Adjust as needed for hero image container */
  margin-bottom: 30px;
}

.page-blog-tdtc-app-features-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  filter: none; /* Ensure no filter on images */
}

.page-blog-tdtc-app-features-review__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-tdtc-app-features-review__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* H1 font size clamp, not fixed large */
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-blog-tdtc-app-features-review__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-tdtc-app-features-review__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

.page-blog-tdtc-app-features-review__btn-primary,
.page-blog-tdtc-app-features-review__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

.page-blog-tdtc-app-features-review__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-tdtc-app-features-review__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-tdtc-app-features-review__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Brighter green for contrast */
  border: 2px solid #2AD16F; /* Border with brighter green */
}

.page-blog-tdtc-app-features-review__btn-secondary:hover {
  background: #2AD16F;
  color: #ffffff;
  transform: translateY(-3px);
}

/* General Section Styling */
.page-blog-tdtc-app-features-review__section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green for sections, provides good contrast with text */
  margin-bottom: 20px; /* Spacing between sections */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-tdtc-app-features-review__section:nth-child(even) {
  background-color: #11271B; /* Card B G for alternating sections */
}

.page-blog-tdtc-app-features-review__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-tdtc-app-features-review__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%); /* Button gradient for underline */
  border-radius: 2px;
}

.page-blog-tdtc-app-features-review__content-block {
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #F2FFF6; /* Text Main */
}

.page-blog-tdtc-app-features-review__section:nth-child(even) .page-blog-tdtc-app-features-review__content-block {
  background-color: #0A4B2C; /* Deep Green for content blocks in alternating sections */
}

.page-blog-tdtc-app-features-review__subsection-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #2AD16F; /* Brighter green for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-tdtc-app-features-review p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-blog-tdtc-app-features-review__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  filter: none; /* Ensure no filter on images */
}

/* FAQ Section */
.page-blog-tdtc-app-features-review__faq-list {
  margin-top: 30px;
}

.page-blog-tdtc-app-features-review__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #F2FFF6;
}

.page-blog-tdtc-app-features-review__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card B G for summary */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-tdtc-app-features-review__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-tdtc-app-features-review__faq-qtext {
  flex-grow: 1;
  color: #2AD16F; /* Brighter green for question text */
}

.page-blog-tdtc-app-features-review__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow color for toggle */
}

.page-blog-tdtc-app-features-review__faq-item[open] .page-blog-tdtc-app-features-review__faq-toggle {
  content: '−';
}

.page-blog-tdtc-app-features-review__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #0A4B2C; /* Deep Green for answer background */
}

/* Conclusion Section */
.page-blog-tdtc-app-features-review__section--conclusion {
  text-align: center;
  padding-bottom: 80px;
  background-color: #08160F; /* Background color */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-tdtc-app-features-review__hero-content {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .page-blog-tdtc-app-features-review {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-tdtc-app-features-review__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-tdtc-app-features-review__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-tdtc-app-features-review__description {
    font-size: 1rem;
  }

  .page-blog-tdtc-app-features-review__cta-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-tdtc-app-features-review__btn-primary,
  .page-blog-tdtc-app-features-review__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-tdtc-app-features-review__section {
    padding: 40px 0;
    margin-bottom: 15px;
  }

  .page-blog-tdtc-app-features-review__section-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-tdtc-app-features-review__subsection-title {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-tdtc-app-features-review__content-block {
    padding: 20px;
  }

  /* Images and their containers */
  .page-blog-tdtc-app-features-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Ensure minimum size, though max-width 100% overrides it visually */
    min-height: 200px !important;
  }
  
  .page-blog-tdtc-app-features-review__hero-image-wrapper,
  .page-blog-tdtc-app-features-review__container,
  .page-blog-tdtc-app-features-review__content-block,
  .page-blog-tdtc-app-features-review__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Specific padding for first section to prevent header overlap, but not --header-offset */
  .page-blog-tdtc-app-features-review__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-tdtc-app-features-review__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-tdtc-app-features-review__faq-answer {
    padding: 15px;
  }
}