.page-resources-industry-trends {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: var(--background-color, #ffffff); /* Default to white if not set */
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-industry-trends__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 40px;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
}

.page-resources-industry-trends__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-industry-trends__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-resources-industry-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-industry-trends__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-industry-trends__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-industry-trends__button {
  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, transform 0.2s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-resources-industry-trends__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-industry-trends__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-resources-industry-trends__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-industry-trends__button--login:hover {
  background-color: #e0a538;
  transform: translateY(-2px);
}

.page-resources-industry-trends__button--download {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-resources-industry-trends__button--download:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.page-resources-industry-trends__content-area {
  max-width: 800px; /* Constrain content width for readability */
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-industry-trends__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-industry-trends__back-link:hover {
  color: #e0a538;
}

.page-resources-industry-trends__article {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-industry-trends__article-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 15px;
  text-align: left;
}

.page-resources-industry-trends__article-meta {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 30px;
  text-align: left;
}

.page-resources-industry-trends__sub-heading {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources-industry-trends__article p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-resources-industry-trends__article strong {
  color: #000000;
}

.page-resources-industry-trends__article-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Minimum size for content images */
  min-height: 200px;
}

.page-resources-industry-trends__conclusion {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: center;
  color: #000000;
}

.page-resources-industry-trends__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-resources-industry-trends__related-resources {
  margin-top: 60px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-resources-industry-trends__related-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-industry-trends__resource-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.page-resources-industry-trends__resource-item {
  margin-bottom: 15px;
}

.page-resources-industry-trends__resource-item a {
  font-size: 1.1em;
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-industry-trends__resource-item a:hover {
  color: #e0a538;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-industry-trends__hero-title {
    font-size: 3em;
  }
  .page-resources-industry-trends__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-industry-trends {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-resources-industry-trends__hero-section {
    padding: 60px 15px 30px;
  }
  .page-resources-industry-trends__hero-title {
    font-size: 2.5em;
  }
  .page-resources-industry-trends__hero-description {
    font-size: 1.1em;
  }
  .page-resources-industry-trends__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-industry-trends__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-industry-trends__content-area {
    padding: 0 15px;
  }
  .page-resources-industry-trends__article-title {
    font-size: 2em;
  }
  .page-resources-industry-trends__sub-heading {
    font-size: 1.5em;
  }
  .page-resources-industry-trends__article p {
    font-size: 1em;
  }
  .page-resources-industry-trends__article-image {
    max-width: 100%;
    height: auto;
  }
  .page-resources-industry-trends__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-industry-trends__cta-buttons .page-resources-industry-trends__button {
    width: 100%;
  }
  .page-resources-industry-trends__related-title {
    font-size: 1.8em;
  }
  /* Ensure content area does not cause horizontal scroll */
  .page-resources-industry-trends {
    overflow-x: hidden;
  }
  .page-resources-industry-trends__content-area > * {
    max-width: 100%;
    box-sizing: border-box; /* Include padding in width calculation */
  }
  .page-resources-industry-trends__article-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-resources-industry-trends__hero-title {
    font-size: 2em;
  }
  .page-resources-industry-trends__hero-description {
    font-size: 0.95em;
  }
  .page-resources-industry-trends__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-industry-trends__article-title {
    font-size: 1.8em;
  }
  .page-resources-industry-trends__sub-heading {
    font-size: 1.3em;
  }
  .page-resources-industry-trends__related-title {
    font-size: 1.5em;
  }
}