/* style/index.css */
.page-index {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color for dark backgrounds */
  background-color: #1A202C;
}

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

.page-index-section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-section-subtitle {
  font-size: 1.2em;
  color: #CCCCCC;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-index-btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-index-btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-index-btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-index-btn-tertiary {
  background-color: #333;
  color: #FFFFFF;
  border: 2px solid #333;
}

.page-index-btn-tertiary:hover {
  background-color: #555;
  border-color: #555;
}

.page-index-btn-readmore {
  background-color: #FFD700;
  color: #1A202C;
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
}

.page-index-btn-readmore:hover {
  background-color: #e6c200;
}

.page-index-btn-download {
  background-color: #FFD700;
  color: #1A202C;
  border: none;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-index-btn-download img {
  width: 24px;
  height: 24px;
}

.page-index-btn-download:hover {
  background-color: #e6c200;
}

.page-index-btn-large {
  font-size: 1.3em;
  padding: 15px 30px;
}

/* Hero Section */
.page-index-hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-index-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* About Section */
.page-index-about-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-index-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-index-grid-layout-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-index-grid-layout-reverse .page-index-promo-image {
  order: 2;
}

.page-index-grid-layout-reverse .page-index-promo-content {
  order: 1;
}

.page-index-about-content p, .page-index-promo-content p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #CCCCCC;
  margin-bottom: 15px;
}

.page-index-responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.page-index-features-section {
  padding: 80px 0;
  background-color: #1A202C;
  text-align: center;
}

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

.page-index-feature-card {
  background-color: #2c3e50;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-index-feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-index-feature-description {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
}

/* Promotions Section */
.page-index-promotions-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-index-promo-content .page-index-section-title {
  text-align: left;
}

/* How to Start Section */
.page-index-how-to-start-section {
  padding: 80px 0;
  background-color: #1A202C;
  text-align: center;
}

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

.page-index-step-card {
  background-color: #2c3e50;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-index-step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-step-card p {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-index-center-cta {
  margin-top: 50px;
  text-align: center;
}

/* App Download Section */
.page-index-app-download-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-index-app-content .page-index-section-title {
  text-align: left;
}

.page-index-download-options {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-index-qr-codes {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-index-qr-item {
  text-align: center;
  color: #CCCCCC;
}

.page-index-qr-image {
  width: 150px;
  height: 150px;
  border: 5px solid #FFD700;
  border-radius: 5px;
  margin-bottom: 10px;
}

.page-index-app-image {
  text-align: center;
}

/* Trust Section */
.page-index-trust-section {
  padding: 80px 0;
  background-color: #1A202C;
  text-align: center;
}

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

.page-index-trust-item {
  background-color: #2c3e50;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-index-trust-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-trust-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-trust-item p {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
}

/* Child Pages Section */
.page-index-child-pages-section {
  padding: 80px 0;
  background-color: #1A202C;
  text-align: center;
}

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

.page-index-child-page-card {
  background-color: #2c3e50;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-child-page-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-index-child-page-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-index-child-page-title a:hover {
  text-decoration: underline;
}

.page-index-child-page-description {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-btn-view-details {
  background-color: #FFD700;
  color: #1A202C;
  border: none;
  padding: 10px 20px;
  align-self: flex-start;
  margin-top: auto; /* Push to bottom */
}

.page-index-btn-view-details:hover {
  background-color: #e6c200;
}

/* CTA Section */
.page-index-cta-section {
  background-color: #FFD700;
  padding: 80px 0;
  text-align: center;
  color: #1A202C;
}

.page-index-cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1A202C;
}

.page-index-cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #333;
}

.page-index-cta-section .page-index-btn-primary {
  background-color: #1A202C;
  color: #FFD700;
  border-color: #1A202C;
}

.page-index-cta-section .page-index-btn-primary:hover {
  background-color: #333;
  border-color: #333;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-hero-title {
    font-size: 2.8em;
  }
  .page-index-section-title {
    font-size: 2em;
  }
  .page-index-grid-layout, .page-index-grid-layout-reverse {
    grid-template-columns: 1fr;
  }
  .page-index-grid-layout-reverse .page-index-promo-image {
    order: 1;
  }
  .page-index-grid-layout-reverse .page-index-promo-content {
    order: 2;
  }
  .page-index-app-image {
    order: -1; /* Move image above content on smaller screens */
  }
  .page-index-app-content .page-index-section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-index-hero-title {
    font-size: 2.2em;
  }
  .page-index-hero-description {
    font-size: 1em;
  }
  .page-index-hero-buttons, .page-index-download-options, .page-index-qr-codes {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-index-section-title {
    font-size: 1.8em;
  }
  .page-index-section-subtitle {
    font-size: 1em;
  }
  .page-index-features-grid, .page-index-steps-grid, .page-index-trust-grid, .page-index-child-pages-grid {
    grid-template-columns: 1fr;
  }
  .page-index-cta-title {
    font-size: 2.2em;
  }
  .page-index-cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index-hero-section, .page-index-about-section, .page-index-features-section, .page-index-promotions-section, .page-index-how-to-start-section, .page-index-app-download-section, .page-index-trust-section, .page-index-child-pages-section, .page-index-cta-section {
    padding: 60px 0;
  }
  .page-index-hero-title {
    font-size: 1.8em;
  }
  .page-index-section-title {
    font-size: 1.5em;
  }
  .page-index-qr-image {
    width: 120px;
    height: 120px;
  }
  .page-index-qr-codes {
    justify-content: center;
  }
}