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

.page-industry-news-company-mergers__hero-section {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-industry-news-company-mergers__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff; /* Ensure high contrast */
}

.page-industry-news-company-mergers__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0; /* Slightly lighter for readability against dark background */
}

.page-industry-news-company-mergers__cta-button {
  display: inline-block;
  background-color: #ff8400; /* Complementary color for emphasis */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-industry-news-company-mergers__cta-button:hover {
  background-color: #e67600;
}

.page-industry-news-company-mergers__cta-button--secondary {
  background-color: #0056b3; /* Darker variant of primary for contrast */
  margin-top: 20px;
}

.page-industry-news-company-mergers__cta-button--secondary:hover {
  background-color: #003f80;
}

.page-industry-news-company-mergers__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  color: #333333;
}

.page-industry-news-company-mergers__article {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-industry-news-company-mergers__section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 30px;
  border-bottom: 2px solid #28a745;
  padding-bottom: 10px;
}

.page-industry-news-company-mergers__sub-title {
  font-size: 1.7em;
  color: #0056b3; /* Darker shade of primary for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-industry-news-company-mergers__article p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333333; /* Ensure high contrast */
}

.page-industry-news-company-mergers__article ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-industry-news-company-mergers__article ul li {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

.page-industry-news-company-mergers__inline-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-industry-news-company-mergers__inline-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-industry-news-company-mergers__call-to-action-text {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  padding: 15px 20px;
  background-color: #e7f3ff; /* Light background for CTA text */
  border-left: 5px solid #007bff;
  border-radius: 5px;
  color: #333333;
}

.page-industry-news-company-mergers__merger-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-industry-news-company-mergers__merger-list li {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Floating Ad */
.page-industry-news-company-mergers__floating-ad {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #28a745; /* Secondary color for visibility */
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  animation: page-industry-news-company-mergers__pulse 2s infinite;
}

.page-industry-news-company-mergers__floating-ad a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}

.page-industry-news-company-mergers__floating-ad-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.page-industry-news-company-mergers__floating-ad-text {
  font-weight: bold;
  font-size: 1.1em;
  color: #ffffff; /* Ensure high contrast */
}

.page-industry-news-company-mergers__floating-ad:hover {
  background-color: #218838;
}

@keyframes page-industry-news-company-mergers__pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

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

  .page-industry-news-company-mergers__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-industry-news-company-mergers__sub-title {
    font-size: 1.4em;
  }

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

  .page-industry-news-company-mergers__floating-ad {
    bottom: 20px;
    right: 20px;
    padding: 8px 15px;
  }

  .page-industry-news-company-mergers__floating-ad-text {
    font-size: 0.9em;
  }

  .page-industry-news-company-mergers__floating-ad-icon {
    width: 25px;
    height: 25px;
  }
}

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

  .page-industry-news-company-mergers__hero-subtitle {
    font-size: 1em;
  }

  .page-industry-news-company-mergers__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

  .page-industry-news-company-mergers__floating-ad {
    bottom: 15px;
    right: 15px;
    padding: 6px 12px;
  }

  .page-industry-news-company-mergers__floating-ad-text {
    display: none; /* Hide text on very small screens to save space */
  }

  .page-industry-news-company-mergers__floating-ad-icon {
    margin-right: 0;
  }
}