.np-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.np-section {
  padding: 70px 0;
  text-align: center;
}

.np-section-title {
  font-size: 2.4em;
  color: var(--back333-color);
  margin-bottom: 50px;
  font-weight: 700;
}

.np-section-content {
  font-size: 1.1em;
  line-height: 1.8;
  color: var(--np-text-color);
}

.np-bg-light {
  background-color: var(--corlor-light-gray);
}

.np-introduction-section {
  padding-bottom: 40px;
}

.np-flex-box {
  display: flex;
  text-align: left;
  gap: 40px;
  align-items: center;
}

.np-text-col {
  flex: 1;
}

.np-image-col {
  flex: 1;
  width: 100%;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.np-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.np-text-col ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.np-text-col ul li {
  background: url("check_icon_placeholder.png") no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--np-text-color);
}

.np-feature-highlight {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 50px;
  margin-bottom: 60px;
}

.np-feature-highlight .np-f-content {
  flex: 1;
}

.np-feature-highlight .np-f-content + [class*=image] {
  flex: 1;
  min-height: 250px;
  background-color: #eee;
  border-radius: 8px;
}

.np-reverse {
  flex-direction: row-reverse;
}

.np-f-title {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.np-learn-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  border-bottom: 1px dashed var(--primary-color);
}

.np-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.np-benefit-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.np-benefit-card:hover {
  transform: translateY(-5px);
  border-bottom: 3px solid var(--primary-color);
}

.np-icon {
  font-size: 2.5em;
  display: block;
  margin-bottom: 15px;
}

.np-card-title {
  font-size: 1.3em;
  color: var(--back333-color);
  margin-bottom: 10px;
}

.np-cta-end {
  background: white;
  color: black;
  padding: 80px 0;
}

.np-cta-end p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.store-buttons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}

.store-btn {
  width: 150px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.store-btn img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 992px) {
  .np-image-col {
    min-height: 250px;
  }
}
@media (max-width: 768px) {
  .np-flex-box,
  .np-feature-highlight,
  .np-reverse {
    flex-direction: column;
  }
  .np-section-title {
    font-size: 2em;
  }
  .np-feature-highlight .np-f-content + [class*=image] {
    order: -1;
  }
}
@media (max-width: 576px) {
  .np-image-col {
    min-height: 200px;
    border-radius: 10px;
  }
  .np-image-col img {
    object-fit: cover;
  }
}
@media (max-width: 480px) {
  .store-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .store-btn {
    width: 160px;
    height: 55px;
  }
}