/* style/latest-news-tech-upgrade.css */
.page-latest-news-tech-upgrade {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text for dark background */
  background-color: #000080; /* Dark blue background */
  line-height: 1.6;
}

.page-latest-news-tech-upgrade__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-latest-news-tech-upgrade__hero {
  background: linear-gradient(135deg, #FFD700, #000080); /* Gold to Dark Blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #000080; /* Dark text on lighter part of gradient */
}

.page-latest-news-tech-upgrade__title {
  font-size: 3.2em;
  color: #000080;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-latest-news-tech-upgrade__subtitle {
  font-size: 1.4em;
  color: #333333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-latest-news-tech-upgrade__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-latest-news-tech-upgrade__section:last-of-type {
  border-bottom: none;
}

.page-latest-news-tech-upgrade__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-latest-news-tech-upgrade p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0; /* Slightly off-white for readability */
}

.page-latest-news-tech-upgrade ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-latest-news-tech-upgrade ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-latest-news-tech-upgrade strong {
  color: #FFD700;
}

.page-latest-news-tech-upgrade__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue 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: 2px solid #FFD700;
  cursor: pointer;
}

.page-latest-news-tech-upgrade__btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-latest-news-tech-upgrade__btn--primary {
  background-color: #FFD700;
  color: #000080;
  border-color: #FFD700;
}

.page-latest-news-tech-upgrade__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-latest-news-tech-upgrade__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
  margin-left: 20px;
}

.page-latest-news-tech-upgrade__btn--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  border-color: #FFD700;
}

.page-latest-news-tech-upgrade__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-latest-news-tech-upgrade__cta-group {
  text-align: center;
  margin-top: 50px;
}

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

  .page-latest-news-tech-upgrade__subtitle {
    font-size: 1.2em;
  }

  .page-latest-news-tech-upgrade__section-title {
    font-size: 2em;
  }

  .page-latest-news-tech-upgrade__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 0;
  }

  .page-latest-news-tech-upgrade__btn--secondary {
    margin-left: 0;
  }

  .page-latest-news-tech-upgrade__cta-group .page-latest-news-tech-upgrade__btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-latest-news-tech-upgrade__title {
    font-size: 2em;
  }

  .page-latest-news-tech-upgrade__subtitle {
    font-size: 1em;
  }

  .page-latest-news-tech-upgrade__section-title {
    font-size: 1.8em;
  }

  .page-latest-news-tech-upgrade p,
  .page-latest-news-tech-upgrade ul li {
    font-size: 0.95em;
  }
}