/* style/industry-insights.css */
.page-industry-insights {
  font-family: 'Arial', sans-serif;
  color: #0A192F;
  line-height: 1.6;
}

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

.page-industry-insights__hero {
  background: linear-gradient(135deg, #0A192F 0%, #304560 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-insights__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
}

.page-industry-insights__hero-title .highlight {
  color: #FFFFFF;
}

.page-industry-insights__hero-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-industry-insights__section {
  padding: 60px 0;
}

.page-industry-insights__section--light {
  background-color: #F8F8F8;
  color: #0A192F;
}

.page-industry-insights__section--dark {
  background-color: #0A192F;
  color: #FFFFFF;
}

.page-industry-insights__section-title {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-industry-insights__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-industry-insights__section-title--alt {
  color: #FFD700;
}

.page-industry-insights__content-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-industry-insights__content-block h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 15px;
  width: 100%;
}

.page-industry-insights__section--light .page-industry-insights__content-block h3 {
  color: #0A192F;
}

.page-industry-insights__content-block p {
  font-size: 1.05em;
  text-align: justify;
}

.page-industry-insights__content-block ul {
  list-style-type: disc;
  margin-left: 25px;
  width: 100%;
  font-size: 1.05em;
}

.page-industry-insights__content-block ul li {
  margin-bottom: 10px;
}

.page-industry-insights__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.page-industry-insights__image--right {
  order: 1;
}

.page-industry-insights__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-industry-insights__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-industry-insights__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-industry-insights__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-industry-insights__hero .page-industry-insights__btn--secondary {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.page-industry-insights__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-industry-insights__hero .page-industry-insights__btn--secondary:hover {
  background-color: #FFFFFF;
  color: #0A192F;
}

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

.page-industry-insights__report-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
}

.page-industry-insights__section--dark .page-industry-insights__report-item {
  background-color: #1a2a40;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #304560;
}

.page-industry-insights__report-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-industry-insights__section--dark .page-industry-insights__report-title {
  color: #FFD700;
}

.page-industry-insights__report-title a {
  color: inherit;
  text-decoration: none;
}

.page-industry-insights__report-title a:hover {
  text-decoration: underline;
}

.page-industry-insights__report-description {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-industry-insights__section--dark .page-industry-insights__report-description {
  color: #ccc;
}

.page-industry-insights__cta-section {
  background: linear-gradient(135deg, #0A192F, #304560);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-industry-insights__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-industry-insights__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

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

/* Responsive Design */
@media (min-width: 768px) {
  .page-industry-insights__content-block {
    flex-direction: row;
    text-align: left;
  }

  .page-industry-insights__content-block:nth-of-type(even) {
    flex-direction: row-reverse;
  }

  .page-industry-insights__content-block .page-industry-insights__image {
    flex: 0 0 45%;
    margin-bottom: 0;
  }

  .page-industry-insights__content-block div {
    flex: 1;
    padding: 0 20px;
  }

  .page-industry-insights__content-block p,
  .page-industry-insights__content-block ul {
    width: auto;
  }
}

@media (max-width: 767px) {
  .page-industry-insights__hero-title {
    font-size: 2.2em;
  }
  .page-industry-insights__section-title {
    font-size: 2em;
  }
  .page-industry-insights__cta-title {
    font-size: 2em;
  }
  .page-industry-insights__cta-buttons {
    flex-direction: column;
  }
  .page-industry-insights__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-industry-insights__content-block .page-industry-insights__image--right {
    order: 0; /* Reset order for mobile */
  }
}

@media (max-width: 480px) {
  .page-industry-insights__hero-title {
    font-size: 1.8em;
  }
  .page-industry-insights__section-title {
    font-size: 1.8em;
  }
  .page-industry-insights__cta-title {
    font-size: 1.8em;
  }
  .page-industry-insights__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-industry-insights__report-item {
    padding: 20px;
  }
}