.page-news-center-company-updates {
  font-family: 'Arial', sans-serif;
  color: #d5d1bc; /* Light text for dark background */
  background-color: #2A2E43; /* Main background color */
  line-height: 1.6;
}

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

.page-news-center-company-updates__hero-section {
  background: linear-gradient(135deg, #2A2E43 0%, #4a506e 100%); /* Gradient based on main color */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-news-center-company-updates__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  font-weight: bold;
}

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

.page-news-center-company-updates__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for button */
  color: #2A2E43; /* Dark text on accent button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-news-center-company-updates__hero-button:hover {
  background-color: #e6c200; /* Slightly darker accent on hover */
  color: #1a1e33;
}

.page-news-center-company-updates__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
}

.page-news-center-company-updates__latest-news {
  padding: 80px 0;
}

.page-news-center-company-updates__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news-center-company-updates__news-card {
  background-color: #3a405c; /* Slightly lighter dark background for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news-center-company-updates__news-card:hover {
  transform: translateY(-5px);
}

.page-news-center-company-updates__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-news-center-company-updates__news-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news-center-company-updates__news-title {
  font-size: 1.5em;
  color: #FFD700; /* Accent color for news titles */
  margin-bottom: 10px;
}

.page-news-center-company-updates__news-meta {
  font-size: 0.9em;
  color: #999; /* Lighter grey for meta info */
  margin-bottom: 15px;
}

.page-news-center-company-updates__news-excerpt {
  color: #d5d1bc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news-center-company-updates__read-more-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for button */
  color: #2A2E43; /* Dark text on accent button */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  align-self: flex-start;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-news-center-company-updates__read-more-button:hover {
  background-color: #e6c200;
  color: #1a1e33;
}

.page-news-center-company-updates__pagination {
  text-align: center;
  margin-top: 50px;
}

.page-news-center-company-updates__pagination-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  padding: 10px 15px;
  margin: 0 5px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-news-center-company-updates__pagination-link:hover,
.page-news-center-company-updates__pagination-link--active {
  background-color: #FFD700;
  color: #2A2E43;
}

.page-news-center-company-updates__milestones {
  background-color: #22263d; /* Slightly darker background */
  padding: 80px 0;
}

.page-news-center-company-updates__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.page-news-center-company-updates__timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #FFD700;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.page-news-center-company-updates__timeline-item {
  padding: 20px 0;
  position: relative;
  width: 50%;
}

.page-news-center-company-updates__timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 50px;
  text-align: right;
}

.page-news-center-company-updates__timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 50px;
  text-align: left;
}

.page-news-center-company-updates__timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #FFD700;
  border: 4px solid #2A2E43;
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}

.page-news-center-company-updates__timeline-item:nth-child(odd)::after {
  right: -10px;
}

.page-news-center-company-updates__timeline-item:nth-child(even)::after {
  left: -10px;
}

.page-news-center-company-updates__timeline-date {
  font-size: 1.1em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 5px;
}

.page-news-center-company-updates__timeline-title {
  font-size: 1.6em;
  color: #d5d1bc;
  margin-bottom: 10px;
}

.page-news-center-company-updates__timeline-description {
  color: #b0b4c7;
  margin-bottom: 15px;
}

.page-news-center-company-updates__timeline-button {
  display: inline-block;
  background-color: #FFD700;
  color: #2A2E43;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-news-center-company-updates__timeline-button:hover {
  background-color: #e6c200;
  color: #1a1e33;
}

.page-news-center-company-updates__cta-section {
  background-color: #3a405c; /* Card background color */
  padding: 80px 0;
  text-align: center;
}

.page-news-center-company-updates__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-news-center-company-updates__cta-description {
  font-size: 1.2em;
  color: #d5d1bc;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-news-center-company-updates__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-news-center-company-updates__cta-button--primary {
  background-color: #FFD700;
  color: #2A2E43;
}

.page-news-center-company-updates__cta-button--primary:hover {
  background-color: #e6c200;
  color: #1a1e33;
}

.page-news-center-company-updates__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-news-center-company-updates__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #2A2E43;
}

.page-news-center-company-updates__about-us {
  padding: 80px 0;
}

.page-news-center-company-updates__about-us p {
  margin-bottom: 20px;
  color: #b0b4c7;
  font-size: 1.1em;
}

.page-news-center-company-updates__faq {
  background-color: #22263d;
  padding: 80px 0;
}

.page-news-center-company-updates__faq-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #3a405c;
  border-radius: 8px;
}

.page-news-center-company-updates__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-news-center-company-updates__faq-answer {
  color: #d5d1bc;
  font-size: 1.1em;
}

.page-news-center-company-updates__faq-link {
  color: #FFD700;
  text-decoration: underline;
}

.page-news-center-company-updates__faq-link:hover {
  color: #e6c200;
}

.page-news-center-company-updates__highlight {
  color: #FFD700;
  font-weight: bold;
}

@media (max-width: 768px) {
  .page-news-center-company-updates__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-news-center-company-updates__timeline::before {
    left: 20px;
  }

  .page-news-center-company-updates__timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 20px;
    text-align: left;
  }

  .page-news-center-company-updates__timeline-item:nth-child(odd)::after,
  .page-news-center-company-updates__timeline-item:nth-child(even)::after {
    left: 10px;
    right: auto;
  }

  .page-news-center-company-updates__cta-title {
    font-size: 2em;
  }
}

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

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

  .page-news-center-company-updates__news-card {
    margin-bottom: 20px;
  }

  .page-news-center-company-updates__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news-center-company-updates__cta-button {
    width: 100%;
  }
}