.page-news-platform-updates {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text */
  background-color: #0A1931; /* Main dark blue background */
  line-height: 1.6;
}

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

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

.page-news-platform-updates__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-news-platform-updates__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFC107; /* Accent gold for title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-platform-updates__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news-platform-updates__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

.page-news-platform-updates__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-news-platform-updates__cta-button {
  display: inline-block;
  background-color: #FFC107; /* Accent gold for CTA */
  color: #0A1931; /* Dark blue for text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news-platform-updates__cta-button:hover {
  background-color: #e6a800; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-news-platform-updates__cta-button--secondary {
  background-color: #1a2a47;
  color: #FFC107;
  border: 1px solid #FFC107;
  margin-left: 15px;
}

.page-news-platform-updates__cta-button--secondary:hover {
  background-color: #0A1931;
  border-color: #e6a800;
}

.page-news-platform-updates__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-news-platform-updates__section:last-of-type {
  border-bottom: none;
}

.page-news-platform-updates__section-title {
  font-size: 2.5em;
  color: #FFC107; /* Accent gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-news-platform-updates__text {
  font-size: 1.1em;
  color: #c0c0c0; /* Lighter gray for body text */
  margin-bottom: 20px;
  text-align: justify;
}

.page-news-platform-updates__introduction .page-news-platform-updates__text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-platform-updates__updates-list {
  display: grid;
  gap: 40px;
}

.page-news-platform-updates__update-item {
  display: flex;
  background-color: #1a2a47; /* Slightly lighter dark blue for update cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-platform-updates__update-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-news-platform-updates__update-image {
  width: 35%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.page-news-platform-updates__update-content {
  padding: 30px;
  flex-grow: 1;
}

.page-news-platform-updates__update-title {
  font-size: 1.8em;
  color: #FFC107;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-news-platform-updates__update-date {
  font-size: 0.9em;
  color: #a0a0a0;
  margin-bottom: 15px;
}

.page-news-platform-updates__read-more {
  display: inline-block;
  background-color: #FFC107;
  color: #0A1931;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-news-platform-updates__read-more:hover {
  background-color: #e6a800;
}

.page-news-platform-updates__future-outlook {
  text-align: center;
}

.page-news-platform-updates__cta-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-news-platform-updates__faq-item {
  background-color: #1a2a47;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-news-platform-updates__faq-question {
  font-size: 1.5em;
  color: #FFC107;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news-platform-updates__hero-title {
    font-size: 2.8em;
  }
  .page-news-platform-updates__hero-subtitle {
    font-size: 1.3em;
  }
  .page-news-platform-updates__section-title {
    font-size: 2em;
  }
  .page-news-platform-updates__update-item {
    flex-direction: column;
  }
  .page-news-platform-updates__update-image {
    width: 100%;
    height: 200px;
  }
  .page-news-platform-updates__update-content {
    padding: 20px;
  }
  .page-news-platform-updates__update-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-news-platform-updates__hero {
    padding: 60px 0 30px;
  }
  .page-news-platform-updates__hero-title {
    font-size: 2.2em;
  }
  .page-news-platform-updates__hero-subtitle {
    font-size: 1.1em;
  }
  .page-news-platform-updates__cta-button {
    padding: 12px 25px;
    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__text {
    font-size: 1em;
  }
  .page-news-platform-updates__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-news-platform-updates__cta-button--secondary {
    margin-left: 0;
  }
  .page-news-platform-updates__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-news-platform-updates__hero-title {
    font-size: 1.8em;
  }
  .page-news-platform-updates__hero-subtitle {
    font-size: 0.9em;
  }
  .page-news-platform-updates__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-news-platform-updates__section-title {
    font-size: 1.5em;
  }
  .page-news-platform-updates__update-title {
    font-size: 1.3em;
  }
  .page-news-platform-updates__faq-question {
    font-size: 1.1em;
  }
  .page-news-platform-updates__update-item {
    border-radius: 8px;
  }
  .page-news-platform-updates__faq-item {
    padding: 20px;
  }
}