body {
  background-color: var(--bg-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-news-industry-report {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-news-industry-report__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is for visual spacing */
  background-color: var(--background-color, #08160F);
}

.page-news-industry-report__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-news-industry-report__hero-content {
  max-width: 1200px;
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-news-industry-report__main-title {
  font-weight: bold;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-news-industry-report__intro-text {
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-news-industry-report__btn-primary,
.page-news-industry-report__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  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-report__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-news-industry-report__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-news-industry-report__btn-secondary {
  background: transparent;
  color: var(--text-main-color, #F2FFF6);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-news-industry-report__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2);
  transform: translateY(-2px);
}

.page-news-industry-report__section {
  padding: 60px 0;
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

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

.page-news-industry-report__section-title {
  font-size: 2.5em;
  color: var(--text-main-color, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-news-industry-report__section-description {
  font-size: 1.1em;
  color: var(--text-secondary-color, #A7D9B8);
  text-align: center;
  margin-bottom: 40px;
}

.page-news-industry-report__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  object-fit: cover;
}

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

.page-news-industry-report__card {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-main-color, #F2FFF6);
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-news-industry-report__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-news-industry-report__card-title {
  font-size: 1.5em;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 15px;
}

.page-news-industry-report__card-text {
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 0.95em;
}

.page-news-industry-report__list-segments {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-news-industry-report__list-item {
  background-color: var(--card-bg-color, #11271B);
  border-left: 5px solid var(--deep-green-color, #0A4B2C);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-news-industry-report__list-title {
  font-size: 1.6em;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 10px;
}

.page-news-industry-report__list-item p {
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 1em;
}

.page-news-industry-report__grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-news-industry-report__challenge-box,
.page-news-industry-report__opportunity-box {
  background-color: var(--card-bg-color, #11271B);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-news-industry-report__box-title {
  font-size: 1.8em;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 20px;
  text-align: center;
}

.page-news-industry-report__list-challenges,
.page-news-industry-report__list-opportunities {
  list-style: none;
  padding: 0;
}

.page-news-industry-report__list-challenges li,
.page-news-industry-report__list-opportunities li {
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-news-industry-report__list-challenges li::before {
  content: '❌'; /* Unicode for red X */
  position: absolute;
  left: 0;
  color: #ff4d4d;
}

.page-news-industry-report__list-opportunities li::before {
  content: '✅'; /* Unicode for green checkmark */
  position: absolute;
  left: 0;
  color: #57E38D;
}

.page-news-industry-report__cta-banner {
  position: relative;
  width: 100%;
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
}

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

.page-news-industry-report__cta-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
  padding: 20px;
  text-align: center;
}

.page-news-industry-report__cta-banner-title {
  font-size: 2em;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 20px;
}

.page-news-industry-report__section-faq {
  padding: 60px 0;
  background-color: var(--background-color, #08160F);
}

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

.page-news-industry-report__faq-item {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news-industry-report__faq-item summary {
  list-style: none;
  padding: 20px 25px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main-color, #F2FFF6);
  font-size: 1.1em;
}

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

.page-news-industry-report__faq-qtext {
  flex-grow: 1;
}

.page-news-industry-report__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--glow-color, #57E38D);
}

.page-news-industry-report__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 1em;
}

.page-news-industry-report__faq-answer p {
  margin-bottom: 10px;
}

.page-news-industry-report__faq-link {
  color: var(--gold-color, #F2C14E);
  text-decoration: underline;
}

.page-news-industry-report__faq-link:hover {
  color: var(--glow-color, #57E38D);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news-industry-report__main-title {
    font-size: 2.8em;
  }
  .page-news-industry-report__section-title {
    font-size: 2em;
  }
  .page-news-industry-report__cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-news-industry-report__grid-2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-news-industry-report__hero-section {
    padding-bottom: 40px;
  }
  .page-news-industry-report__main-title {
    font-size: 2.2em;
  }
  .page-news-industry-report__intro-text {
    font-size: 1em;
  }
  .page-news-industry-report__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news-industry-report__btn-primary,
  .page-news-industry-report__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }
  .page-news-industry-report__section {
    padding: 40px 0;
  }
  .page-news-industry-report__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-news-industry-report__section-description {
    font-size: 0.95em;
  }
  .page-news-industry-report__cards-grid {
    gap: 20px;
  }
  .page-news-industry-report__card {
    padding: 20px;
  }
  .page-news-industry-report__card-title {
    font-size: 1.3em;
  }
  .page-news-industry-report__list-item {
    padding: 20px;
  }
  .page-news-industry-report__list-title {
    font-size: 1.4em;
  }
  .page-news-industry-report__grid-2col {
    gap: 20px;
  }
  .page-news-industry-report__box-title {
    font-size: 1.5em;
  }
  .page-news-industry-report__cta-banner-title {
    font-size: 1.5em;
  }
  .page-news-industry-report__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-news-industry-report__faq-answer {
    padding: 0 20px 15px 20px;
  }

  /* Image and Video Responsiveness */
  .page-news-industry-report img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news-industry-report__section,
  .page-news-industry-report__card,
  .page-news-industry-report__container,
  .page-news-industry-report__hero-image-wrapper,
  .page-news-industry-report__cta-banner,
  .page-news-industry-report__cta-buttons,
  .page-news-industry-report__grid-2col,
  .page-news-industry-report__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-news-industry-report__hero-section {
    padding-top: 10px !important;
    padding-left: 0 !important; /* Resetting for hero-content padding */
    padding-right: 0 !important; /* Resetting for hero-content padding */
  }
  .page-news-industry-report__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-news-industry-report__main-title {
    font-size: 1.8em;
  }
  .page-news-industry-report__section-title {
    font-size: 1.5em;
  }
  .page-news-industry-report__cta-banner-title {
    font-size: 1.2em;
  }
}