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

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

.page-news-platform-updates__hero {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-platform-updates__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
  opacity: 0.3;
  animation: page-news-platform-updates__pulse 15s infinite ease-out;
}

@keyframes page-news-platform-updates__pulse {
  0% { transform: scale(0.8); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
  100% { transform: scale(0.8); opacity: 0.3; }
}

.page-news-platform-updates__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Gold for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news-platform-updates__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-platform-updates__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-news-platform-updates__button--primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark Blue */
  border: 2px solid #FFCC00;
}

.page-news-platform-updates__button--primary:hover {
  background-color: #e6b800; /* Darker Gold */
  border-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-news-platform-updates__button--secondary {
  background-color: #003366; /* Dark Blue */
  color: #FFCC00; /* Gold */
  border: 2px solid #FFCC00;
}

.page-news-platform-updates__button--secondary:hover {
  background-color: #004488; /* Slightly lighter blue */
  border-color: #FFCC00;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-news-platform-updates__section {
  padding: 60px 0;
}

.page-news-platform-updates__section--intro {
  background-color: #f0f2f5;
}

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

.page-news-platform-updates__section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Gold accent */
  border-radius: 2px;
}

.page-news-platform-updates__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-news-platform-updates__content-wrapper p {
  font-size: 1.1em;
  color: #495057;
  max-width: 900px;
  text-align: justify;
}

.page-news-platform-updates__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-news-platform-updates__image--large {
  max-width: 800px;
}

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

.page-news-platform-updates__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-news-platform-updates__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-news-platform-updates__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-news-platform-updates__feature-title {
  font-size: 1.8em;
  color: #003366; /* Dark Blue */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news-platform-updates__feature-card p {
  font-size: 1em;
  color: #555;
  text-align: justify;
  margin-bottom: 15px;
}

.page-news-platform-updates__feature-card .page-news-platform-updates__button {
  margin-top: auto;
}

.page-news-platform-updates__section--cta {
  background: linear-gradient(90deg, #003366 0%, #004488 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-news-platform-updates__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-platform-updates__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-news-platform-updates__image--promo {
  margin-top: 40px;
  max-width: 700px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news-platform-updates__section--future {
  background-color: #f0f2f5;
  text-align: center;
}

.page-news-platform-updates__section--future p {
  font-size: 1.1em;
  color: #495057;
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-news-platform-updates__hero-title {
    font-size: 2.8em;
  }
  .page-news-platform-updates__hero-subtitle {
    font-size: 1.1em;
  }
  .page-news-platform-updates__section-title {
    font-size: 2em;
  }
  .page-news-platform-updates__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-news-platform-updates__hero {
    padding: 60px 0;
  }
  .page-news-platform-updates__hero-title {
    font-size: 2.2em;
  }
  .page-news-platform-updates__hero-subtitle {
    font-size: 1em;
  }
  .page-news-platform-updates__section {
    padding: 40px 0;
  }
  .page-news-platform-updates__section-title {
    font-size: 1.8em;
  }
  .page-news-platform-updates__feature-card {
    padding: 25px;
  }
  .page-news-platform-updates__feature-title {
    font-size: 1.6em;
  }
  .page-news-platform-updates__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .page-news-platform-updates__hero-title {
    font-size: 1.8em;
  }
  .page-news-platform-updates__hero-subtitle {
    font-size: 0.9em;
  }
  .page-news-platform-updates__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news-platform-updates__section-title {
    font-size: 1.5em;
  }
  .page-news-platform-updates__feature-card p {
    font-size: 0.9em;
  }
  .page-news-platform-updates__cta-text {
    font-size: 1em;
  }
}