.page-index-key-features {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #0A1931;
  line-height: 1.6;
}

.page-index-key-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-key-features__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-index-key-features__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-index-key-features__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ffffff;
}

.page-index-key-features__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-index-key-features__btn--primary {
  background-color: #FFD700;
  color: #0A1931;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-key-features__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-key-features__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-index-key-features__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-index-key-features__section {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-index-key-features__section:nth-of-type(even) {
  background-color: #122a4a;
}

.page-index-key-features__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-key-features__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-index-key-features__text-content {
  font-size: 1.1em;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-key-features__feature-card {
  background-color: #1a3a6b;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-key-features__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-index-key-features__card-icon {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-key-features__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-key-features__card-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-key-features__image-wrapper {
  margin-top: 30px;
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-key-features__image {
  width: 100%;
  height: auto;
  display: block;
}

.page-index-key-features__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-index-key-features__cta-bottom .page-index-key-features__btn {
  margin-top: 30px;
}

.page-index-key-features__download-app-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-index-key-features__promo-actions {
  text-align: center;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-key-features__hero-title {
    font-size: 2.8em;
  }
  .page-index-key-features__hero-description {
    font-size: 1.2em;
  }
  .page-index-key-features__section-title {
    font-size: 2em;
  }
  .page-index-key-features__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-index-key-features__hero {
    padding: 80px 0;
  }
  .page-index-key-features__hero-title {
    font-size: 2.2em;
  }
  .page-index-key-features__hero-description {
    font-size: 1em;
  }
  .page-index-key-features__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-key-features__btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 80%;
  }
  .page-index-key-features__section {
    padding: 60px 0;
  }
  .page-index-key-features__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-index-key-features__sub-title {
    font-size: 1.4em;
  }
  .page-index-key-features__card-title {
    font-size: 1.5em;
  }
  .page-index-key-features__card-description {
    font-size: 0.95em;
  }
  .page-index-key-features__download-app-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-index-key-features__hero {
    padding: 60px 0;
  }
  .page-index-key-features__hero-title {
    font-size: 1.8em;
  }
  .page-index-key-features__hero-description {
    font-size: 0.9em;
  }
  .page-index-key-features__btn {
    width: 90%;
  }
  .page-index-key-features__section {
    padding: 40px 0;
  }
  .page-index-key-features__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-index-key-features__sub-title {
    font-size: 1.2em;
  }
  .page-index-key-features__feature-card {
    padding: 20px;
  }
  .page-index-key-features__card-icon {
    font-size: 2.5em;
  }
  .page-index-key-features__card-title {
    font-size: 1.3em;
  }
  .page-index-key-features__card-description {
    font-size: 0.9em;
  }
}