.page-industry-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Inherited from body, but explicitly set for clarity */
}

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

/* Hero Section */
.page-industry-news__hero-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background-color: #017439; /* Brand primary color for hero */
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-industry-news__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-industry-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

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

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

.page-industry-news__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-industry-news__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-industry-news__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-industry-news__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

/* Content Area */
.page-industry-news__content-area {
  padding: 60px 0;
  background-color: #ffffff; /* Light background for content */
  color: #333333; /* Dark text for light background */
}

.page-industry-news__section-title {
  font-size: 2em;
  margin-bottom: 30px;
  color: #017439; /* Brand primary color for section titles */
  text-align: center;
}

.page-industry-news__paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #333333;
}

.page-industry-news__paragraph a {
  color: #017439;
  text-decoration: underline;
}

.page-industry-news__paragraph a:hover {
  color: #005f2e;
}

.page-industry-news__article-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  object-fit: cover;
  display: block;
}

/* FAQ Section */
.page-industry-news__faq-list {
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.page-industry-news__faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  color: #333333;
}

.page-industry-news__faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #017439;
}

.page-industry-news__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-industry-news__faq-question {
  padding: 10px 0;
}

.page-industry-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-industry-news__faq-answer {
  padding: 10px 0;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

/* Utility classes for color contrast */
.page-industry-news__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-industry-news__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-industry-news__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-industry-news__hero-title {
    font-size: 2em;
  }

  .page-industry-news__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-industry-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-industry-news__btn-primary,
  .page-industry-news__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-industry-news__content-area {
    padding: 40px 0;
  }

  .page-industry-news__section-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }

  .page-industry-news__paragraph {
    font-size: 0.95em;
    padding: 0 15px;
  }

  .page-industry-news__article-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-industry-news__faq-item summary {
    font-size: 1em;
    padding: 0 15px;
  }

  .page-industry-news__faq-answer {
    padding: 10px 15px;
  }

  .page-industry-news__container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-industry-news__cta-buttons--bottom {
    padding: 0 15px;
  }
}