/* style/download-center-app-features.css */
.page-download-center-app-features {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-download-center-app-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-download-center-app-features__hero {
  background: linear-gradient(135deg, #0A2463 0%, #3a5796 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-app-features__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E3B505; /* Wealth gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-download-center-app-features__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #F0F0F0;
}

.page-download-center-app-features__section {
  padding: 80px 0;
}

.page-download-center-app-features__section--light-bg {
  background-color: #F8F8F8;
}

.page-download-center-app-features__section--cta-bg {
  background: linear-gradient(45deg, #0A2463, #1c4a92);
  color: #FFFFFF;
  text-align: center;
}

.page-download-center-app-features__section--final-cta {
  background-color: #0A2463;
  color: #FFFFFF;
  text-align: center;
}

.page-download-center-app-features__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-download-center-app-features__section-title--light {
  color: #E3B505;
}

.page-download-center-app-features__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E3B505;
  margin: 20px auto 0;
  border-radius: 2px;
}

.page-download-center-app-features__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-download-center-app-features__description--light {
  color: #F0F0F0;
}

.page-download-center-app-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-download-center-app-features__feature-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-app-features__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-download-center-app-features__feature-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-download-center-app-features__feature-subtitle {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-download-center-app-features__feature-item p {
  font-size: 1em;
  color: #555;
}

.page-download-center-app-features__button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 30px;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-download-center-app-features__button--primary {
  background-color: #E3B505;
  color: #0A2463;
  box-shadow: 0 4px 10px rgba(227, 181, 5, 0.4);
}

.page-download-center-app-features__button--primary:hover {
  background-color: #f5db9c;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(227, 181, 5, 0.6);
}

.page-download-center-app-features__button--secondary {
  background-color: #0A2463;
  color: #E3B505;
  border: 2px solid #E3B505;
  box-shadow: 0 4px 10px rgba(10, 36, 99, 0.4);
}

.page-download-center-app-features__button--secondary:hover {
  background-color: #1c4a92;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(10, 36, 99, 0.6);
}

.page-download-center-app-features__step-list {
  list-style: none;
  padding: 0;
  margin: 60px auto 40px;
  max-width: 900px;
  counter-reset: step-counter;
}

.page-download-center-app-features__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #E3B505;
  padding: 25px 30px;
  margin-bottom: 25px;
  border-radius: 8px;
  position: relative;
  text-align: left;
  color: #FFFFFF;
}

.page-download-center-app-features__step-item::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: -5px;
  top: 0px;
  background-color: #E3B505;
  color: #0A2463;
  padding: 5px 10px;
  border-radius: 0 0 8px 0;
  font-weight: bold;
  font-size: 0.9em;
}

.page-download-center-app-features__step-title {
  font-size: 1.8em;
  color: #E3B505;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-download-center-app-features__step-item p {
  color: #F0F0F0;
}

.page-download-center-app-features__download-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-download-center-app-features__hero-title {
    font-size: 2.5em;
  }

  .page-download-center-app-features__section-title {
    font-size: 2em;
  }

  .page-download-center-app-features__feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-download-center-app-features__hero {
    padding: 80px 0;
  }

  .page-download-center-app-features__hero-title {
    font-size: 2em;
  }

  .page-download-center-app-features__hero-description {
    font-size: 1em;
  }

  .page-download-center-app-features__section {
    padding: 60px 0;
  }

  .page-download-center-app-features__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-download-center-app-features__feature-item {
    padding: 25px;
  }

  .page-download-center-app-features__feature-subtitle {
    font-size: 1.4em;
  }

  .page-download-center-app-features__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-download-center-app-features__step-title {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-download-center-app-features__hero {
    padding: 60px 0;
  }

  .page-download-center-app-features__hero-title {
    font-size: 1.8em;
  }

  .page-download-center-app-features__hero-description {
    font-size: 0.9em;
  }

  .page-download-center-app-features__section {
    padding: 40px 0;
  }

  .page-download-center-app-features__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .page-download-center-app-features__feature-item {
    padding: 20px;
  }

  .page-download-center-app-features__feature-image {
    max-width: 150px;
  }

  .page-download-center-app-features__feature-subtitle {
    font-size: 1.2em;
  }

  .page-download-center-app-features__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-download-center-app-features__step-title {
    font-size: 1.3em;
  }
}