.page-tin-tc-industry-news {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0;
  background-color: #1A202C;
  line-height: 1.6;
}

.page-tin-tc-industry-news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-tin-tc-industry-news-hero {
  background: linear-gradient(135deg, #1A202C, #3A475C);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-tin-tc-industry-news-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-tin-tc-industry-news-hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  font-weight: 700;
}

.page-tin-tc-industry-news-hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tc-industry-news-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.page-tin-tc-industry-news-btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-tin-tc-industry-news-btn-primary:hover {
  background-color: #E0B800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-tin-tc-industry-news-btn-secondary {
  background-color: #2D3748;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-tin-tc-industry-news-btn-secondary:hover {
  background-color: #3A475C;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-tin-tc-industry-news-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-tin-tc-industry-news-section:last-of-type {
  border-bottom: none;
}

.page-tin-tc-industry-news-section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-tin-tc-industry-news-section-subtitle {
  font-size: 1.2em;
  color: #A0AEC0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tc-industry-news-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-tin-tc-industry-news-content-wrapper.page-tin-tc-industry-news-reverse {
  flex-direction: row-reverse;
}

.page-tin-tc-industry-news-text-content {
  flex: 1;
}

.page-tin-tc-industry-news-text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-tin-tc-industry-news-text-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-tin-tc-industry-news-text-content li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-tin-tc-industry-news-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-tin-tc-industry-news-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-tin-tc-industry-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-tin-tc-industry-news-card {
  background-color: #2D3748;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tin-tc-industry-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-tin-tc-industry-news-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-tin-tc-industry-news-card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-tin-tc-industry-news-card-text {
  font-size: 1em;
  color: #A0AEC0;
}

.page-tin-tc-industry-news-cta-final {
  text-align: center;
  margin-top: 60px;
}

/* FAQ Styles */
.page-tin-tc-industry-news-faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2D3748;
  color: #FFD700;
  border: 1px solid #3A475C;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background: #3A475C;
  color: #FFEA80;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: 600;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFEA80;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #1A202C;
  color: #E0E0E0;
  border-top: none;
  border-left: 1px solid #3A475C;
  border-right: 1px solid #3A475C;
  border-bottom: 1px solid #3A475C;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
}

.faq-answer p {
  margin-bottom: 10px;
  font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-tin-tc-industry-news-hero-title {
    font-size: 2.8em;
  }
  .page-tin-tc-industry-news-hero-description {
    font-size: 1.1em;
  }
  .page-tin-tc-industry-news-section-title {
    font-size: 2em;
  }
  .page-tin-tc-industry-news-content-wrapper {
    flex-direction: column;
  }
  .page-tin-tc-industry-news-content-wrapper.page-tin-tc-industry-news-reverse {
    flex-direction: column;
  }
  .page-tin-tc-industry-news-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-tin-tc-industry-news-hero {
    padding: 60px 0;
  }
  .page-tin-tc-industry-news-hero-title {
    font-size: 2.2em;
  }
  .page-tin-tc-industry-news-hero-description {
    font-size: 1em;
  }
  .page-tin-tc-industry-news-section {
    padding: 40px 0;
  }
  .page-tin-tc-industry-news-section-title {
    font-size: 1.8em;
  }
  .page-tin-tc-industry-news-section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-tin-tc-industry-news-grid {
    grid-template-columns: 1fr;
  }
  .page-tin-tc-industry-news-card-image {
    height: 200px;
  }
  .page-tin-tc-industry-news-card-title {
    font-size: 1.4em;
  }
  .page-tin-tc-industry-news-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}