.page-news-new-industry-regulations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0a0a0a; /* Dark background from shared.css */
}

.page-news-new-industry-regulations__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, #1A2B4C, #3A507C);
  overflow: hidden;
}

.page-news-new-industry-regulations__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-news-new-industry-regulations__hero-image {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news-new-industry-regulations__hero-main-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-news-new-industry-regulations__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-news-new-industry-regulations__hero-title {
  font-size: 42px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-new-industry-regulations__hero-description {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-new-industry-regulations__hero-description a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-news-new-industry-regulations__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1A2B4C;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-news-new-industry-regulations__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFC107);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news-new-industry-regulations__content-section {
  padding: 60px 20px;
  background-color: #0a0a0a; /* Ensure consistency with body background */
  color: #f0f0f0; /* Light text for dark section */
}

.page-news-new-industry-regulations__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.page-news-new-industry-regulations__article {
  flex: 3;
  background: #1A2B4C; /* Dark blue card for main content */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 40px;
  color: #ffffff; /* White text for dark blue card */
}

.page-news-new-industry-regulations__article-title {
  font-size: 32px;
  font-weight: bold;
  color: #FFD700; /* Gold for main article titles */
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-news-new-industry-regulations__section-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Gold for subtitles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFA500;
  padding-left: 15px;
}

.page-news-new-industry-regulations__article p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
}

.page-news-new-industry-regulations__article p a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-news-new-industry-regulations__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-news-new-industry-regulations__list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-news-new-industry-regulations__list li strong {
  color: #FFD700;
}

.page-news-new-industry-regulations__sub-list {
  list-style: circle inside;
  margin-top: 10px;
  padding-left: 20px;
}

.page-news-new-industry-regulations__sub-list li {
  margin-bottom: 5px;
  font-size: 15px;
}

.page-news-new-industry-regulations__faq-container {
  margin-top: 40px;
}

.page-news-new-industry-regulations__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-news-new-industry-regulations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #3A507C; /* Darker blue for FAQ question */
  border: 1px solid #4A608C;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-news-new-industry-regulations__faq-question:hover {
  background: #4A608C;
  border-color: #5A709C;
}

.page-news-new-industry-regulations__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-news-new-industry-regulations__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-news-new-industry-regulations__faq-item.active .page-news-new-industry-regulations__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-news-new-industry-regulations__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #2A3B5C; /* Slightly lighter dark blue for answer */
  color: #f0f0f0;
  border-radius: 0 0 8px 8px;
}

.page-news-new-industry-regulations__faq-item.active .page-news-new-industry-regulations__faq-answer {
  max-height: 2000px !important; /* Sufficiently large for content */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-news-new-industry-regulations__faq-answer p a {
  color: #FFD700;
  text-decoration: underline;
}

.page-news-new-industry-regulations__sidebar {
  flex: 1;
  background: #1A2B4C; /* Dark blue card for sidebar */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  color: #ffffff; /* White text for dark blue card */
}

.page-news-new-industry-regulations__sidebar-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
}

.page-news-new-industry-regulations__news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-news-new-industry-regulations__news-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.page-news-new-industry-regulations__news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-news-new-industry-regulations__news-link {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.page-news-new-industry-regulations__news-link:hover {
  color: #FFD700;
}

.page-news-new-industry-regulations__news-image {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-news-new-industry-regulations__news-headline {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
  color: inherit;
}

.page-news-new-industry-regulations__news-date {
  font-size: 14px;
  color: #cccccc;
  margin-top: 5px;
  margin-left: 135px; /* Align with text after image */
}

.page-news-new-industry-regulations__view-all-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  padding: 12px 25px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1A2B4C;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news-new-industry-regulations__view-all-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFC107);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-new-industry-regulations__container {
    flex-direction: column;
    gap: 30px;
  }

  .page-news-new-industry-regulations__article,
  .page-news-new-industry-regulations__sidebar {
    flex: none;
    width: 100%;
  }

  .page-news-new-industry-regulations__news-date {
    margin-left: 0;
    text-align: right;
    font-size: 13px;
  }
  .page-news-new-industry-regulations__news-link {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-news-new-industry-regulations__news-image {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    max-width: 250px;
    height: auto;
  }
  .page-news-new-industry-regulations__news-headline {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-news-new-industry-regulations {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news-new-industry-regulations__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-new-industry-regulations__hero-title {
    font-size: 32px;
  }

  .page-news-new-industry-regulations__hero-description {
    font-size: 16px;
  }

  .page-news-new-industry-regulations__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }

  .page-news-new-industry-regulations__content-section {
    padding: 30px 15px;
  }

  .page-news-new-industry-regulations__article,
  .page-news-new-industry-regulations__sidebar {
    padding: 25px;
  }

  .page-news-new-industry-regulations__article-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .page-news-new-industry-regulations__section-subtitle {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-news-new-industry-regulations__article p,
  .page-news-new-industry-regulations__list li,
  .page-news-new-industry-regulations__sub-list li {
    font-size: 15px;
  }

  .page-news-new-industry-regulations__faq-question {
    padding: 15px 20px;
  }

  .page-news-new-industry-regulations__faq-question h3 {
    font-size: 16px;
  }

  .page-news-new-industry-regulations__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-news-new-industry-regulations__faq-answer {
    padding: 0 20px;
  }

  .page-news-new-industry-regulations__faq-item.active .page-news-new-industry-regulations__faq-answer {
    padding: 15px 20px !important;
  }

  .page-news-new-industry-regulations__sidebar-title {
    font-size: 20px;
  }

  .page-news-new-industry-regulations__news-headline {
    font-size: 16px;
  }

  .page-news-new-industry-regulations__news-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .page-news-new-industry-regulations__section,
  .page-news-new-industry-regulations__card,
  .page-news-new-industry-regulations__container,
  .page-news-new-industry-regulations__hero-container,
  .page-news-new-industry-regulations__hero-image,
  .page-news-new-industry-regulations__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-new-industry-regulations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}