.page-resources-choose-reliable-thomo-platform {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Matches shared.css body background */
  line-height: 1.6;
}

.page-resources-choose-reliable-thomo-platform__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  text-align: center;
  overflow: hidden;
}

.page-resources-choose-reliable-thomo-platform__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-resources-choose-reliable-thomo-platform__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-resources-choose-reliable-thomo-platform__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-choose-reliable-thomo-platform__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-choose-reliable-thomo-platform__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-choose-reliable-thomo-platform__btn-primary,
.page-resources-choose-reliable-thomo-platform__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-choose-reliable-thomo-platform__btn-primary {
  background-color: #CC0000;
  color: #ffffff;
  border: 2px solid #CC0000;
}

.page-resources-choose-reliable-thomo-platform__btn-primary:hover {
  background-color: #e60000;
  border-color: #e60000;
}

.page-resources-choose-reliable-thomo-platform__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-choose-reliable-thomo-platform__btn-secondary:hover {
  background-color: #FFD700;
  color: #CC0000;
}

.page-resources-choose-reliable-thomo-platform__video-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  text-align: center;
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-resources-choose-reliable-thomo-platform__video-container {
  max-width: 1000px;
  margin: 40px auto 0 auto;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-resources-choose-reliable-thomo-platform__video-link-wrapper {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  cursor: pointer;
}

.page-resources-choose-reliable-thomo-platform__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
}

.page-resources-choose-reliable-thomo-platform__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff; /* Light background for content */
  color: #333333; /* Dark text for light background */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-40px);
  position: relative;
  z-index: 2;
}

.page-resources-choose-reliable-thomo-platform__content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-choose-reliable-thomo-platform__section-title {
  font-size: 2.5em;
  color: #CC0000; /* Red for section titles */
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-choose-reliable-thomo-platform__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
  text-align: center;
}

.page-resources-choose-reliable-thomo-platform__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.page-resources-choose-reliable-thomo-platform__image-inline {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-choose-reliable-thomo-platform__sub-title {
  font-size: 1.8em;
  color: #CC0000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-choose-reliable-thomo-platform__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-resources-choose-reliable-thomo-platform__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-choose-reliable-thomo-platform__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #CC0000;
  font-weight: bold;
}

.page-resources-choose-reliable-thomo-platform__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-choose-reliable-thomo-platform__card {
  background-color: #f8f8f8; /* Light background for cards */
  color: #333333; /* Dark text for light background */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-choose-reliable-thomo-platform__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-choose-reliable-thomo-platform__card-image {
  max-width: 100%;
  height: auto;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-resources-choose-reliable-thomo-platform__card-title {
  font-size: 1.5em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-resources-choose-reliable-thomo-platform__card-text {
  font-size: 1em;
  line-height: 1.7;
}

.page-resources-choose-reliable-thomo-platform__faq-container {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-choose-reliable-thomo-platform__faq-item {
  background-color: #f8f8f8;
  color: #333333;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-resources-choose-reliable-thomo-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-resources-choose-reliable-thomo-platform__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-choose-reliable-thomo-platform__faq-title {
  font-size: 1.2em;
  color: #CC0000;
  margin: 0;
}

.page-resources-choose-reliable-thomo-platform__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #CC0000;
  transition: transform 0.3s ease;
}

.page-resources-choose-reliable-thomo-platform__faq-item.active .page-resources-choose-reliable-thomo-platform__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-choose-reliable-thomo-platform__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-choose-reliable-thomo-platform__faq-item.active .page-resources-choose-reliable-thomo-platform__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-resources-choose-reliable-thomo-platform__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
}

.page-resources-choose-reliable-thomo-platform__cta-section {
  background-color: #CC0000; /* Brand red background */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 60px;
}

.page-resources-choose-reliable-thomo-platform__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-choose-reliable-thomo-platform__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-resources-choose-reliable-thomo-platform__hero-title {
    font-size: 2.8em;
  }
  .page-resources-choose-reliable-thomo-platform__section-title {
    font-size: 2em;
  }
  .page-resources-choose-reliable-thomo-platform__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-choose-reliable-thomo-platform {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-choose-reliable-thomo-platform__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-resources-choose-reliable-thomo-platform__hero-title {
    font-size: 2.2em;
  }

  .page-resources-choose-reliable-thomo-platform__hero-description {
    font-size: 1em;
  }

  .page-resources-choose-reliable-thomo-platform__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-choose-reliable-thomo-platform__btn-primary,
  .page-resources-choose-reliable-thomo-platform__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-choose-reliable-thomo-platform__video-section {
    padding: 40px 15px;
  }

  .page-resources-choose-reliable-thomo-platform__video-container,
  .page-resources-choose-reliable-thomo-platform__video-link-wrapper,
  .page-resources-choose-reliable-thomo-platform__video {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-choose-reliable-thomo-platform__content-area {
    padding: 30px 15px;
    transform: translateY(-20px);
  }

  .page-resources-choose-reliable-thomo-platform__content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-resources-choose-reliable-thomo-platform__section-title {
    font-size: 1.8em;
  }

  .page-resources-choose-reliable-thomo-platform__sub-title {
    font-size: 1.4em;
  }

  .page-resources-choose-reliable-thomo-platform__list-item {
    font-size: 1em;
  }

  .page-resources-choose-reliable-thomo-platform__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-choose-reliable-thomo-platform__card {
    padding: 20px;
  }

  .page-resources-choose-reliable-thomo-platform__card-image {
    min-width: 200px !important;
    min-height: 200px !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Mobile image responsiveness for all img tags in content area */
  .page-resources-choose-reliable-thomo-platform img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-choose-reliable-thomo-platform__faq-question {
    padding: 15px;
  }

  .page-resources-choose-reliable-thomo-platform__faq-title {
    font-size: 1.1em;
  }

  .page-resources-choose-reliable-thomo-platform__faq-answer {
    padding: 0 15px;
  }

  .page-resources-choose-reliable-thomo-platform__faq-item.active .page-resources-choose-reliable-thomo-platform__faq-answer {
    padding: 15px;
  }

  .page-resources-choose-reliable-thomo-platform__cta-section {
    padding: 40px 15px;
  }

  .page-resources-choose-reliable-thomo-platform__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-resources-choose-reliable-thomo-platform__hero-title {
    font-size: 1.8em;
  }
  .page-resources-choose-reliable-thomo-platform__section-title {
    font-size: 1.5em;
  }
  .page-resources-choose-reliable-thomo-platform__cta-title {
    font-size: 1.6em;
  }
}