.page-industry-news-company-profiles {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-industry-news-company-profiles__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a3f4a 100%); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-industry-news-company-profiles__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-company-profiles__hero-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-company-profiles__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA */
  color: #1A202C; /* Dark text for auxiliary background */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-industry-news-company-profiles__hero-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-industry-news-company-profiles__content-section {
  padding: 60px 0;
}

.page-industry-news-company-profiles__section-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-industry-news-company-profiles__sub-section-title {
  font-size: 1.6em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-industry-news-company-profiles p {
  margin-bottom: 20px;
  color: #e5dfd3;
}

.page-industry-news-company-profiles ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e5dfd3;
}

.page-industry-news-company-profiles ul li {
  margin-bottom: 10px;
}

.page-industry-news-company-profiles__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-industry-news-company-profiles__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  border: 1px dashed #FFD700;
}

.page-industry-news-company-profiles__cta-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-industry-news-company-profiles__cta-btn:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

.page-industry-news-company-profiles__related-links {
    padding: 40px 0;
    background-color: #2a303c;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-industry-news-company-profiles__link-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.page-industry-news-company-profiles__link-list li a {
    color: #FFD700;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 20px;
    border: 1px solid #FFD700;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-industry-news-company-profiles__link-list li a:hover {
    background-color: #FFD700;
    color: #1A202C;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-industry-news-company-profiles__hero-title {
    font-size: 2em;
  }

  .page-industry-news-company-profiles__hero-description {
    font-size: 1em;
  }

  .page-industry-news-company-profiles__hero-btn,
  .page-industry-news-company-profiles__cta-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-industry-news-company-profiles__section-title {
    font-size: 1.8em;
  }

  .page-industry-news-company-profiles__sub-section-title {
    font-size: 1.4em;
  }
  
  .page-industry-news-company-profiles__link-list {
      flex-direction: column;
      align-items: center;
  }
}

@media (max-width: 480px) {
  .page-industry-news-company-profiles__hero-title {
    font-size: 1.5em;
  }

  .page-industry-news-company-profiles__hero-description {
    font-size: 0.9em;
  }

  .page-industry-news-company-profiles__hero-btn,
  .page-industry-news-company-profiles__cta-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-industry-news-company-profiles__section-title {
    font-size: 1.5em;
  }

  .page-industry-news-company-profiles__sub-section-title {
    font-size: 1.2em;
  }
}