.page-news-product-launches {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  line-height: 1.6;
  background-color: #0d123d; /* Darker variant of primary for overall background */
}

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

.page-news-product-launches__hero {
  background: linear-gradient(135deg, #1A237E, #3b429f); /* Primary color with a slight gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.page-news-product-launches__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-news-product-launches__section {
  padding: 60px 0;
  background-color: #1a237e; /* Primary color for sections */
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-product-launches__section:nth-of-type(even) {
  background-color: #141b5a; /* Slightly darker primary for alternating sections */
}

.page-news-product-launches__section-title {
  font-size: 2.5em;
  color: #FFC107; /* Secondary color for section titles */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-news-product-launches__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-product-launches__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-news-product-launches__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-news-product-launches__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-news-product-launches__text-content {
  flex: 1;
  min-width: 300px;
}

.page-news-product-launches__text-content p {
  margin-bottom: 15px;
  color: #e0e0e0;
  font-size: 1.05em;
}

.page-news-product-launches__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-news-product-launches__img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-news-product-launches__btn--primary {
  background-color: #FFC107; /* Secondary color */
  color: #1A237E; /* Primary color */
}

.page-news-product-launches__btn--primary:hover {
  background-color: #e6b000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-news-product-launches__btn--secondary {
  background-color: #1A237E; /* Primary color */
  color: #FFC107; /* Secondary color */
  border: 2px solid #FFC107;
  margin-left: 15px;
}

.page-news-product-launches__btn--secondary:hover {
  background-color: #2e3790;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-news-product-launches__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 30px;
}

.page-news-product-launches__cta-center {
  text-align: center;
  margin-top: 40px;
}

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

.page-news-product-launches__feature-card {
  background-color: #2a338e; /* Slightly lighter primary for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-news-product-launches__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-news-product-launches__card-img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-news-product-launches__card-title {
  font-size: 1.6em;
  color: #FFC107;
  margin-bottom: 15px;
}

.page-news-product-launches__card-text {
  color: #e0e0e0;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news-product-launches__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-news-product-launches__benefit-list li {
  background-color: #2a338e;
  border-left: 5px solid #FFC107;
  padding: 20px;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-news-product-launches__icon {
  font-size: 1.5em;
  color: #FFC107;
}
.page-news-product-launches__icon--star::before { content: '⭐'; }
.page-news-product-launches__icon--bonus::before { content: '💰'; }
.page-news-product-launches__icon--security::before { content: '🔒'; }
.page-news-product-launches__icon--support::before { content: '📞'; }
.page-news-product-launches__icon--mobile::before { content: '📱'; }

.page-news-product-launches__steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-news-product-launches__steps li {
  background-color: #2a338e;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #e0e0e0;
  position: relative;
  padding-left: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-news-product-launches__steps li strong {
  color: #FFC107;
  display: block;
  margin-bottom: 5px;
  font-size: 1.2em;
}

.page-news-product-launches__steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFC107;
  color: #1A237E;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-news-product-launches__steps {
  counter-reset: step-counter;
}

.page-news-product-launches__container--flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-news-product-launches__app-info {
  flex: 1;
  min-width: 300px;
}

.page-news-product-launches__app-info .page-news-product-launches__btn {
  margin-right: 15px;
  margin-top: 20px;
}

.page-news-product-launches__app-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-news-product-launches__hero-title {
    font-size: 2.8em;
  }
  .page-news-product-launches__section-title {
    font-size: 2em;
  }
  .page-news-product-launches__content-wrapper {
    flex-direction: column;
  }
  .page-news-product-launches__content-wrapper:nth-child(even) {
    flex-direction: column;
  }
  .page-news-product-launches__app-info .page-news-product-launches__btn {
    margin-left: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-news-product-launches__hero {
    padding: 80px 0;
  }
  .page-news-product-launches__hero-title {
    font-size: 2.2em;
  }
  .page-news-product-launches__hero-subtitle {
    font-size: 1.1em;
  }
  .page-news-product-launches__section {
    padding: 40px 0;
  }
  .page-news-product-launches__section-title {
    font-size: 1.8em;
  }
  .page-news-product-launches__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news-product-launches__feature-card {
    padding: 20px;
  }
  .page-news-product-launches__card-title {
    font-size: 1.4em;
  }
  .page-news-product-launches__benefit-list li, .page-news-product-launches__steps li {
    font-size: 1em;
    padding: 15px;
    padding-left: 50px;
  }
  .page-news-product-launches__steps li::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
    left: 15px;
  }
}

@media (max-width: 480px) {
  .page-news-product-launches__hero-title {
    font-size: 1.8em;
  }
  .page-news-product-launches__hero-subtitle {
    font-size: 0.9em;
  }
  .page-news-product-launches__btn {
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 10px;
  }
  .page-news-product-launches__btn--secondary {
    margin-top: 10px;
  }
  .page-news-product-launches__app-info .page-news-product-launches__btn {
    margin-right: 0;
  }
  .page-news-product-launches__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-news-product-launches__benefit-list {
    grid-template-columns: 1fr;
  }
}