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

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

.page-index-core-features__section {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #333333; /* Ensuring good contrast on light background */
}

.page-index-core-features__section--dark {
  background-color: #000080; /* Navy Blue */
  color: #FFFFFF; /* White text for dark background */
}

.page-index-core-features__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Golden title */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-core-features__section--dark .page-index-core-features__section-title {
  color: #FFD700; /* Golden title on dark background */
}

.page-index-core-features__hero {
  background: linear-gradient(135deg, #000080 0%, #000040 100%); /* Dark gradient background */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-core-features__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Golden title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-core-features__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-index-core-features__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-core-features__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-core-features__text:last-of-type {
  margin-bottom: 0;
}

.page-index-core-features__btn {
  display: inline-block;
  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;
  margin: 10px;
  cursor: pointer;
}

.page-index-core-features__btn--primary {
  background-color: #FFD700; /* Golden background */
  color: #000080; /* Navy text */
  border: 2px solid #FFD700;
}

.page-index-core-features__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-core-features__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Golden text */
  border: 2px solid #FFD700;
}

.page-index-core-features__btn--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-3px);
}

.page-index-core-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-index-core-features__feature-card:hover {
  transform: translateY(-10px);
}

.page-index-core-features__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-core-features__feature-title {
  font-size: 1.5em;
  color: #000080; /* Navy title */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-core-features__feature-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-index-core-features__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-index-core-features__list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #f0f0f0; /* Light text for dark background */
}

.page-index-core-features__section--dark .page-index-core-features__list li {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.page-index-core-features__payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index-core-features__payment-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.page-index-core-features__payment-item:hover {
  transform: translateY(-10px);
}

.page-index-core-features__payment-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-core-features__payment-title {
  font-size: 1.6em;
  color: #000080;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-core-features__payment-description {
  color: #555;
  font-size: 1em;
}

.page-index-core-features__app-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-index-core-features__app-info {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-index-core-features__app-title {
  font-size: 2em;
  color: #000080;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-core-features__app-image {
  flex: 1 1 45%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.page-index-core-features__benefit-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.page-index-core-features__benefit-item:hover {
  background-color: #fffbe6; /* Light golden hover */
}

.page-index-core-features__benefit-title {
  font-size: 1.8em;
  color: #000080;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-core-features__benefit-description {
  color: #555;
  font-size: 1em;
}

.page-index-core-features__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #000080;
  color: #FFFFFF;
}

.page-index-core-features__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-core-features__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-core-features__hero-title {
    font-size: 2.5em;
  }

  .page-index-core-features__section-title {
    font-size: 2em;
  }

  .page-index-core-features__features-grid,
  .page-index-core-features__payment-methods,
  .page-index-core-features__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-index-core-features__app-download {
    flex-direction: column;
  }

  .page-index-core-features__app-info, .page-index-core-features__app-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-index-core-features__cta-title {
    font-size: 2.5em;
  }

  .page-index-core-features__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index-core-features__hero-title {
    font-size: 2em;
  }

  .page-index-core-features__section-title {
    font-size: 1.8em;
  }

  .page-index-core-features__cta-title {
    font-size: 2em;
  }

  .page-index-core-features__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}