.page-news-industry-updates {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #121212; /* Matches assumed body background */
}

.page-news-industry-updates__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 0; /* Assumes shared.css handles body padding-top: var(--header-offset) */
  margin-top: 0;
}

.page-news-industry-updates__hero-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.page-news-industry-updates__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-news-industry-updates__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-news-industry-updates__container {
  max-width: 100%;
  margin: 0 auto;
}

.page-news-industry-updates__main-title {
  font-size: 36px;
  color: #FFD700; /* Gold brand color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news-industry-updates__intro-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-news-industry-updates__section {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for sections */
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-news-industry-updates__dark-section {
  background-color: #8B0000; /* Dark Red brand color */
  color: #ffffff;
}

.page-news-industry-updates__section-title {
  font-size: 28px;
  color: #FFD700; /* Gold brand color */
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-news-industry-updates__article-block {
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.page-news-industry-updates__article-title {
  font-size: 22px;
  color: #FFD700; /* Gold brand color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-news-industry-updates__article-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin-bottom: 15px;
  border-radius: 4px;
  object-fit: cover;
}

.page-news-industry-updates__info-block {
  margin-bottom: 25px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #FFD700;
  border-radius: 4px;
}

.page-news-industry-updates__info-title {
  font-size: 20px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-news-industry-updates__promo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.page-news-industry-updates__promo-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 6px;
  border-left: 5px solid #FFD700;
}

.page-news-industry-updates__promo-title {
  font-size: 20px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-news-industry-updates__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-news-industry-updates__btn-primary,
.page-news-industry-updates__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-industry-updates__btn-primary {
  background-color: #FFD700; /* Gold brand color */
  color: #121212; /* Dark text for gold background */
  border: 2px solid #FFD700;
}

.page-news-industry-updates__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-news-industry-updates__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for dark background */
  border: 2px solid #FFD700;
}

.page-news-industry-updates__btn-secondary:hover {
  background-color: #FFD700;
  color: #121212;
}

/* FAQ Styles */
.page-news-industry-updates__faq-section {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-industry-updates__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
}

.page-news-industry-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-news-industry-updates__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFD700;
}

.page-news-industry-updates__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-news-industry-updates__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-news-industry-updates__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #f0f0f0;
}

.page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: none;
}

.page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-news-industry-updates__copyright {
  background-color: #0a0a0a;
  padding: 20px 0;
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 40px;
}

.page-news-industry-updates__copyright-text {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news-industry-updates__main-title {
    font-size: 32px;
  }

  .page-news-industry-updates__section-title {
    font-size: 24px;
  }

  .page-news-industry-updates__article-title {
    font-size: 20px;
  }

  .page-news-industry-updates__info-title,
  .page-news-industry-updates__promo-title {
    font-size: 18px;
  }

  .page-news-industry-updates__btn-primary,
  .page-news-industry-updates__btn-secondary {
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .page-news-industry-updates {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news-industry-updates__hero-section {
    padding-top: 0 !important; /* Ensure no double padding if shared.css sets body padding */
  }

  .page-news-industry-updates__content-area {
    padding: 20px 15px;
  }

  .page-news-industry-updates__main-title {
    font-size: 28px;
  }

  .page-news-industry-updates__intro-text {
    font-size: 16px;
  }

  .page-news-industry-updates__section {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-news-industry-updates__section-title {
    font-size: 22px;
  }

  .page-news-industry-updates__article-title {
    font-size: 18px;
  }

  .page-news-industry-updates__article-image,
  .page-news-industry-updates img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news-industry-updates__info-block,
  .page-news-industry-updates__promo-item {
    padding: 15px;
  }

  .page-news-industry-updates__info-title,
  .page-news-industry-updates__promo-title {
    font-size: 16px;
  }

  .page-news-industry-updates__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .page-news-industry-updates__btn-primary,
  .page-news-industry-updates__btn-secondary,
  .page-news-industry-updates a[class*="button"],
  .page-news-industry-updates a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-industry-updates__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }

  .page-news-industry-updates__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }

  .page-news-industry-updates__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .page-news-industry-updates__faq-answer {
    padding: 0 15px;
  }

  .page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-answer {
    padding: 15px !important;
  }

  .page-news-industry-updates__copyright {
    padding: 15px;
  }
}