.page-news-industry-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color, #333333);
  background-color: var(--body-bg, #ffffff);
}

.page-news-industry-analysis__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff; /* Text on hero image is white */
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-news-industry-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-news-industry-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.page-news-industry-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-news-industry-analysis__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-news-industry-analysis__btn-register,
.page-news-industry-analysis__btn-login,
.page-news-industry-analysis__btn-primary,
.page-news-industry-analysis__btn-secondary,
.page-news-industry-analysis__btn-download {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-news-industry-analysis__btn-register,
.page-news-industry-analysis__btn-login {
  background-color: #C30808;
  color: #FFFF00;
}

.page-news-industry-analysis__btn-register:hover,
.page-news-industry-analysis__btn-login:hover {
  background-color: #a00606;
}

.page-news-industry-analysis__btn-primary {
  background-color: #017439;
  color: #ffffff;
}

.page-news-industry-analysis__btn-primary:hover {
  background-color: #005a2e;
}

.page-news-industry-analysis__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border-color: #017439;
}

.page-news-industry-analysis__btn-secondary:hover {
  background-color: #f0f0f0;
}

.page-news-industry-analysis__btn-download {
  background-color: #017439;
  color: #ffffff;
}

.page-news-industry-analysis__btn-download:hover {
  background-color: #005a2e;
}

.page-news-industry-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* Content area has white background */
  color: #333333; /* Dark text for white background */
}

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

.page-news-industry-analysis__section-title {
  font-size: 2.2em;
  color: #017439;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-news-industry-analysis__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-news-industry-analysis__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-news-industry-analysis__highlight {
  color: #017439;
  font-weight: bold;
}

.page-news-industry-analysis__cta-section {
  background-color: #f8f8f8;
  padding: 40px;
  margin-top: 50px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.page-news-industry-analysis__cta-title {
  font-size: 2em;
  color: #017439;
  margin-bottom: 15px;
}

.page-news-industry-analysis__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

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

.page-news-industry-analysis__faq-section {
  margin-top: 60px;
}

.page-news-industry-analysis__faq-list {
  margin-top: 30px;
}

.page-news-industry-analysis__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-news-industry-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #f9f9f9;
  color: #017439;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-news-industry-analysis__faq-question:hover {
  background-color: #f0f0f0;
}

.page-news-industry-analysis__faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: #017439;
}

.page-news-industry-analysis__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.page-news-industry-analysis__faq-item.active .page-news-industry-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-news-industry-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #333333;
  background-color: #ffffff;
}

.page-news-industry-analysis__faq-item.active .page-news-industry-analysis__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-news-industry-analysis__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news-industry-analysis__hero-title {
    font-size: 2.8em;
  }
  .page-news-industry-analysis__hero-description {
    font-size: 1.1em;
  }
  .page-news-industry-analysis__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-news-industry-analysis {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-news-industry-analysis__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-news-industry-analysis__hero-title {
    font-size: 2.2em;
  }
  .page-news-industry-analysis__hero-description {
    font-size: 1em;
  }
  .page-news-industry-analysis__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news-industry-analysis__btn-register,
  .page-news-industry-analysis__btn-login,
  .page-news-industry-analysis__btn-primary,
  .page-news-industry-analysis__btn-secondary,
  .page-news-industry-analysis__btn-download {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-news-industry-analysis__content-area,
  .page-news-industry-analysis__container,
  .page-news-industry-analysis__cta-section,
  .page-news-industry-analysis__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-news-industry-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news-industry-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news-industry-analysis__faq-question,
  .page-news-industry-analysis__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news-industry-analysis__faq-item.active .page-news-industry-analysis__faq-answer {
    padding: 15px 15px !important;
  }
}