.page-news-industry-updates {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-news-industry-updates__hero {
  background: linear-gradient(135deg, #003366 0%, #0a4f94 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-industry-updates__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 204, 0, 0.2) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 0;
}

.page-news-industry-updates__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00;
  position: relative;
  z-index: 1;
}

.page-news-industry-updates__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-news-industry-updates__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  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;
  border: none;
  cursor: pointer;
}

.page-news-industry-updates__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-news-industry-updates__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-news-industry-updates__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-news-industry-updates__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news-industry-updates__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-news-industry-updates__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

.page-news-industry-updates__article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news-industry-updates__article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-news-industry-updates__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-news-industry-updates__article-title {
  font-size: 1.5em;
  color: #003366;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-news-industry-updates__article-title a {
  text-decoration: none;
  color: #003366;
  transition: color 0.3s ease;
}

.page-news-industry-updates__article-title a:hover {
  color: #FFCC00;
}

.page-news-industry-updates__article-excerpt {
  font-size: 1em;
  color: #555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-news-industry-updates__text-block {
  margin-top: 50px;
  padding: 30px;
  background-color: #f0f5f8;
  border-left: 5px solid #FFCC00;
  border-radius: 8px;
}

.page-news-industry-updates__sub-section-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 20px;
}

.page-news-industry-updates__sub-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #FFCC00;
  margin-top: 10px;
  border-radius: 1.5px;
}

.page-news-industry-updates__text-block p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

.page-news-industry-updates__cta-group {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-news-industry-updates__cta-button--primary {
  background-color: #FFCC00;
  color: #003366;
}

.page-news-industry-updates__cta-button--primary:hover {
  background-color: #e6b800;
}

.page-news-industry-updates__cta-button--secondary {
  background-color: #003366;
  color: #fff;
  border: 2px solid #FFCC00;
}

.page-news-industry-updates__cta-button--secondary:hover {
  background-color: #0a4f94;
  border-color: #e6b800;
}

.page-news-industry-updates__faq .page-news-industry-updates__accordion {
  margin-top: 40px;
}

.page-news-industry-updates__accordion-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-news-industry-updates__accordion-header {
  width: 100%;
  background-color: #003366;
  color: #fff;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  padding-right: 50px;
}

.page-news-industry-updates__accordion-header:hover {
  background-color: #0a4f94;
}

.page-news-industry-updates__accordion-header::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
  color: #FFCC00;
}

.page-news-industry-updates__accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-news-industry-updates__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #fcfcfc;
}

.page-news-industry-updates__accordion-content p {
  padding: 20px 0;
  margin: 0;
  color: #444;
}

.page-news-industry-updates__accordion-content a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-news-industry-updates__accordion-content a:hover {
  color: #FFCC00;
}

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

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

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

  .page-news-industry-updates__article-grid {
    grid-template-columns: 1fr;
  }

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

  .page-news-industry-updates__sub-section-title {
    font-size: 1.8em;
  }

  .page-news-industry-updates__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

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

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

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

  .page-news-industry-updates__section {
    padding: 40px 0;
  }

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

  .page-news-industry-updates__intro p,
  .page-news-industry-updates__text-block p {
    font-size: 0.95em;
  }
}