/* style/news-industry-trends.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Navy Blue */
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #000080;
  --accent-color: #FFC107; /* A slightly darker gold for hover/active states */
  --secondary-darker: #000066; /* A slightly darker navy for hover */
}

.page-news-industry-trends {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.page-news-industry-trends__hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--background-dark);
  color: var(--text-light);
}

.page-news-industry-trends__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-news-industry-trends__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends__hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-industry-trends__hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
}

.page-news-industry-trends__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-industry-trends__cta-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-news-industry-trends__cta-button--secondary:hover {
  background: var(--secondary-darker);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.page-news-industry-trends__section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-news-industry-trends__section:last-of-type {
  border-bottom: none;
}

.page-news-industry-trends__intro, .page-news-industry-trends__bec88-position {
  background-color: var(--background-light);
}

.page-news-industry-trends__growth-factors, .page-news-industry-trends__challenges-opportunities {
  background-color: #ffffff;
}

.page-news-industry-trends__segment-analysis, .page-news-industry-trends__future-outlook {
  background-color: var(--background-light);
}

.page-news-industry-trends__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news-industry-trends__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

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

.page-news-industry-trends__grid-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-industry-trends__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news-industry-trends__image-content {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-news-industry-trends__grid-item h3 {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-news-industry-trends__grid-item p {
  font-size: 1em;
  color: var(--text-dark);
}

.page-news-industry-trends__card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-industry-trends__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news-industry-trends__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-news-industry-trends__card-content {
  padding: 20px;
}

.page-news-industry-trends__card-content h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-news-industry-trends__card-content h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-industry-trends__card-content h3 a:hover {
  color: var(--primary-color);
}

.page-news-industry-trends__card-content p {
  font-size: 0.95em;
  color: var(--text-dark);
}

.page-news-industry-trends__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-news-industry-trends__list li {
  background: #ffffff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-news-industry-trends__list li strong {
  color: var(--secondary-color);
}

.page-news-industry-trends__center-button {
  text-align: center;
  margin-top: 40px;
}

.page-news-industry-trends__feature-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-news-industry-trends__feature-box h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.page-news-industry-trends__feature-box ul {
  list-style: none;
  padding: 0;
}

.page-news-industry-trends__feature-box li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: var(--text-dark);
}

.page-news-industry-trends__feature-box li::before {
  content: '✔️'; /* Or a custom icon */
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-news-industry-trends__faq {
  background-color: var(--background-light);
}

.page-news-industry-trends__faq-list {
  margin-top: 40px;
}

/* FAQ default state - Answer hidden */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--secondary-color);
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  display: inline-block; /* Ensure transform works */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  color: var(--text-dark);
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  border-top: 1px solid #e0e0e0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-trends__hero-content h1 {
    font-size: 2.8em;
  }
  .page-news-industry-trends__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-news-industry-trends__hero {
    padding: 40px 15px;
  }
  .page-news-industry-trends__hero-image {
    max-height: 300px;
  }
  .page-news-industry-trends__hero-content h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-news-industry-trends__hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-news-industry-trends__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-news-industry-trends__section {
    padding: 40px 0;
  }
  .page-news-industry-trends__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-news-industry-trends__content-grid {
    grid-template-columns: 1fr;
  }
  .page-news-industry-trends__grid-item, .page-news-industry-trends__card, .page-news-industry-trends__feature-box {
    padding: 20px;
  }
  .page-news-industry-trends__image-content, .page-news-industry-trends__card-image {
    height: 200px;
  }
  .faq-question {
    padding: 12px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 18px;
  }
  .faq-answer {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .page-news-industry-trends__hero-content h1 {
    font-size: 1.8em;
  }
  .page-news-industry-trends__section-title {
    font-size: 1.5em;
  }
  .page-news-industry-trends__list li {
    font-size: 1em;
    padding: 10px 15px;
  }
  .page-news-industry-trends__feature-box li {
    font-size: 0.95em;
  }
}