/* style/industry-news-latest-regulations.css */
.page-industry-news-latest-regulations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa; /* Light background for readability */
}

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

.page-industry-news-latest-regulations__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-latest-regulations__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-industry-news-latest-regulations__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #ffffff; /* White text for contrast */
}

.page-industry-news-latest-regulations__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  color: #e0e0e0; /* Slightly off-white for subtitle */
}

.page-industry-news-latest-regulations__hero-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color for CTA */
  color: #333; /* Dark text for contrast on yellow */
  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;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-industry-news-latest-regulations__hero-button:hover {
  background-color: #e0a800; /* Darker yellow on hover */
  transform: translateY(-2px);
}

.page-industry-news-latest-regulations__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-industry-news-latest-regulations__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color for main titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-industry-news-latest-regulations__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Auxiliary color for underline */
  border-radius: 2px;
}

.page-industry-news-latest-regulations__subsection-title {
  font-size: 1.8em;
  color: #0056b3; /* Darker shade of primary for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #ffc107; /* Auxiliary color accent */
  padding-left: 15px;
}

.page-industry-news-latest-regulations__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

.page-industry-news-latest-regulations__highlight {
  color: #007bff;
  font-weight: bold;
}

.page-industry-news-latest-regulations__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: #555;
}

.page-industry-news-latest-regulations__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-industry-news-latest-regulations__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-industry-news-latest-regulations__cta-box {
  background-color: #f0f8ff; /* Light blue background for CTA box */
  border: 1px solid #cce5ff;
  border-radius: 10px;
  padding: 40px;
  margin-top: 60px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-industry-news-latest-regulations__cta-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-industry-news-latest-regulations__cta-text {
  font-size: 1.2em;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-industry-news-latest-regulations__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-industry-news-latest-regulations__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-industry-news-latest-regulations__button--primary {
  background-color: #007bff;
  color: #ffffff;
}

.page-industry-news-latest-regulations__button--primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-industry-news-latest-regulations__button--secondary {
  background-color: #ffc107;
  color: #333;
}

.page-industry-news-latest-regulations__button--secondary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

  .page-industry-news-latest-regulations__hero-subtitle {
    font-size: 1.2em;
  }

  .page-industry-news-latest-regulations__section-title {
    font-size: 2em;
  }

  .page-industry-news-latest-regulations__subsection-title {
    font-size: 1.5em;
  }

  .page-industry-news-latest-regulations__cta-title {
    font-size: 1.8em;
  }

  .page-industry-news-latest-regulations__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-industry-news-latest-regulations__hero-button,
  .page-industry-news-latest-regulations__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
}

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

  .page-industry-news-latest-regulations__hero-subtitle {
    font-size: 1em;
  }

  .page-industry-news-latest-regulations__section-title {
    font-size: 1.8em;
  }

  .page-industry-news-latest-regulations__subsection-title {
    font-size: 1.3em;
  }

  .page-industry-news-latest-regulations__paragraph,
  .page-industry-news-latest-regulations__list li,
  .page-industry-news-latest-regulations__cta-text {
    font-size: 0.95em;
  }

  .page-industry-news-latest-regulations__cta-title {
    font-size: 1.5em;
  }
}