.page-industry-insights-tech-trends {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A2E36; /* Main background color */
}

.page-industry-insights-tech-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-industry-insights-tech-trends__hero {
  background: linear-gradient(135deg, #0A2E36 0%, #0A2E36 60%, #E0B34C 100%);
  padding: 100px 0;
  text-align: center;
  color: #F8F8F8;
  position: relative;
  overflow: hidden;
}

.page-industry-insights-tech-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F8F8F8;
  line-height: 1.2;
}

.page-industry-insights-tech-trends__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #D3D3D3;
}

.page-industry-insights-tech-trends__section {
  padding: 80px 0;
  background-color: #0A2E36;
  color: #F8F8F8;
}

.page-industry-insights-tech-trends__section--alt {
  background-color: #1A3E46; /* Slightly lighter dark for contrast */
}

.page-industry-insights-tech-trends__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 60px;
  color: #E0B34C; /* Auxiliary color for titles */
  position: relative;
}

.page-industry-insights-tech-trends__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B34C;
  margin: 20px auto 0;
}

.page-industry-insights-tech-trends__subsection-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #E0B34C;
}

.page-industry-insights-tech-trends__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #D3D3D3;
}

.page-industry-insights-tech-trends__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-industry-insights-tech-trends__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-insights-tech-trends__cta-button,
.page-industry-insights-tech-trends__secondary-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 20px 10px;
  text-align: center;
}

.page-industry-insights-tech-trends__cta-button {
  background-color: #E0B34C; /* Auxiliary color */
  color: #0A2E36;
}

.page-industry-insights-tech-trends__cta-button:hover {
  background-color: #F0C45E;
  transform: translateY(-3px);
}

.page-industry-insights-tech-trends__secondary-button {
  background-color: transparent;
  border: 2px solid #E0B34C;
  color: #E0B34C;
}

.page-industry-insights-tech-trends__secondary-button:hover {
  background-color: #E0B34C;
  color: #0A2E36;
  transform: translateY(-3px);
}

.page-industry-insights-tech-trends__button-group {
  text-align: center;
  margin-top: 40px;
}

.page-industry-insights-tech-trends .highlight {
  color: #E0B34C;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-industry-insights-tech-trends__hero-title {
    font-size: 2.5em;
  }

  .page-industry-insights-tech-trends__hero-subtitle {
    font-size: 1em;
  }

  .page-industry-insights-tech-trends__section-title {
    font-size: 2em;
  }

  .page-industry-insights-tech-trends__subsection-title {
    font-size: 1.5em;
  }

  .page-industry-insights-tech-trends__cta-button,
  .page-industry-insights-tech-trends__secondary-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 5px;
  }

  .page-industry-insights-tech-trends__hero {
    padding: 80px 0;
  }

  .page-industry-insights-tech-trends__section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-industry-insights-tech-trends__hero-title {
    font-size: 2em;
  }

  .page-industry-insights-tech-trends__section-title {
    font-size: 1.8em;
  }

  .page-industry-insights-tech-trends__subsection-title {
    font-size: 1.3em;
  }

  .page-industry-insights-tech-trends__cta-button,
  .page-industry-insights-tech-trends__secondary-button {
    display: block;
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}