:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-register: #C30808;
  --button-login: #C30808;
  --font-register-login: #FFFF00;
  --background-default: #FFFFFF;
}

.page-news-industry-insights {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--background-default); /* Explicitly set for clarity */
}

.page-news-industry-insights__intro-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, var(--primary-color) 0%, #005f2e 100%); /* Green gradient */
  color: var(--text-light);
  overflow: hidden;
}

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

.page-news-industry-insights__intro-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-news-industry-insights__intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-news-industry-insights__main-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--font-register-login); /* Yellow for prominence */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-news-industry-insights__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-news-industry-insights__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-news-industry-insights__btn-primary,
.page-news-industry-insights__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-industry-insights__btn-primary {
  background: var(--button-register); /* Red */
  color: var(--font-register-login); /* Yellow */
  border: 2px solid var(--button-register);
  box-shadow: 0 4px 15px rgba(195, 8, 8, 0.4);
}

.page-news-industry-insights__btn-primary:hover {
  background: #a80707;
  border-color: #a80707;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(195, 8, 8, 0.6);
}

.page-news-industry-insights__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(1, 116, 57, 0.2);
}

.page-news-industry-insights__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(1, 116, 57, 0.4);
}

.page-news-industry-insights__section {
  padding: 60px 20px;
  margin: 0 auto;
  background-color: var(--background-default);
  color: var(--text-dark);
}

.page-news-industry-insights__section--overview {
  background-color: #f9f9f9;
}

.page-news-industry-insights__section--technology {
  background-color: var(--background-default);
}

.page-news-industry-insights__section--regulation {
  background-color: #f9f9f9;
}

.page-news-industry-insights__section--responsibility {
  background-color: var(--background-default);
}

.page-news-industry-insights__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-news-industry-insights__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-news-industry-insights__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-news-industry-insights__dark-bg .page-news-industry-insights__section-title {
  color: var(--font-register-login);
}

.page-news-industry-insights__text-block {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-news-industry-insights__image-wrapper {
  margin: 40px 0;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-news-industry-insights__list-item {
  background: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.page-news-industry-insights__list-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-insights__main-title {
    font-size: 2.4em;
  }
  .page-news-industry-insights__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-news-industry-insights__intro-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-industry-insights__intro-image {
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .page-news-industry-insights__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-news-industry-insights__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

  .page-news-industry-insights__btn-primary,
  .page-news-industry-insights__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-news-industry-insights__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-news-industry-insights__text-block {
    font-size: 0.95em;
  }

  .page-news-industry-insights__image-wrapper {
    margin: 30px 0;
  }

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

  .page-news-industry-insights__container,
  .page-news-industry-insights__section,
  .page-news-industry-insights__list-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-news-industry-insights__list-item {
    padding: 20px;
  }

  .page-news-industry-insights__list-title {
    font-size: 1.3em;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .page-news-industry-insights__main-title {
    font-size: 1.6em;
  }
  .page-news-industry-insights__section-title {
    font-size: 1.6em;
  }
}