/* style/index.css */

/* General Page Styling */
.page-index {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F5F5F5; /* Light text on dark background */
  background-color: #0A2342;
}

.page-index-section-title {
  font-size: 2.8em;
  color: #E0B400; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.page-index-highlight {
  color: #E0B400;
}

/* Buttons */
.page-index-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 1.1em;
}

.page-index-btn-primary {
  background-color: #E0B400;
  color: #0A2342; /* Dark text on gold button */
  border: 2px solid #E0B400;
}

.page-index-btn-primary:hover {
  background-color: #FFC700;
  border-color: #FFC700;
  transform: translateY(-2px);
}

.page-index-btn-secondary {
  background-color: transparent;
  color: #E0B400; /* Gold text on dark background */
  border: 2px solid #E0B400;
}

.page-index-btn-secondary:hover {
  background-color: #E0B400;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-index-btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-index-btn-link {
  color: #E0B400;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #E0B400;
  padding-bottom: 3px;
}

.page-index-btn-link:hover {
  color: #FFC700;
  border-color: #FFC700;
}

/* Hero Section */
.page-index-hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A5E 100%);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-index-hero-content {
  max-width: 900px;
  z-index: 10;
}

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

.page-index-hero-description {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-hero-actions .page-index-btn {
  margin: 0 15px;
  min-width: 180px;
}

.page-index-hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: auto;
  opacity: 0.2;
  z-index: 1;
}

.page-index-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* About Section */
.page-index-about {
  padding: 80px 20px;
  background-color: #061A33;
}

.page-index-about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.page-index-about-text {
  flex: 2;
  min-width: 300px;
  color: #D0D0D0;
  font-size: 1.1em;
}

.page-index-about-text p {
  margin-bottom: 15px;
}

.page-index-about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-about-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.page-index-features {
  padding: 80px 20px;
  background-color: #0A2342;
}

.page-index-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-index-feature-item:hover {
  transform: translateY(-5px);
  background-color: #2D527C;
}

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

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

.page-index-feature-description {
  color: #D0D0D0;
  font-size: 1em;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-index-promotions {
  padding: 80px 20px;
  background-color: #061A33;
}

.page-index-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.page-index-promo-item {
  background-color: #1A3A5E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-promo-item:hover {
  transform: translateY(-5px);
}

.page-index-promo-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-promo-item h3 {
  font-size: 1.6em;
  color: #E0B400;
  padding: 20px 20px 10px;
}

.page-index-promo-item p {
  color: #D0D0D0;
  padding: 0 20px 20px;
  font-size: 1em;
}

.page-index-promo-item .page-index-btn {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  box-sizing: border-box;
}

.page-index-all-promos-link {
  text-align: center;
}

/* App Download Section */
.page-index-app-download {
  padding: 80px 20px;
  background-color: #0A2342;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-app-content {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.page-index-app-description {
  font-size: 1.2em;
  color: #D0D0D0;
  margin-bottom: 30px;
}

.page-index-app-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-index-app-benefits li {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-index-icon-check {
  color: #E0B400;
  margin-right: 10px;
  font-size: 1.3em;
  /* Simple checkmark icon, could be replaced with SVG/font icon */
  content: '✔';
}

.page-index-app-buttons .page-index-btn {
  margin-right: 20px;
  margin-bottom: 15px; /* For mobile stacking */
}

.page-index-app-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-app-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Trust Section */
.page-index-trust {
  padding: 80px 20px;
  background-color: #061A33;
}

.page-index-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-index-trust-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-index-trust-description {
  color: #D0D0D0;
  font-size: 1em;
}

/* Details List Section */
.page-index-details-list {
  padding: 80px 20px;
  background-color: #0A2342;
}

.page-index-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-detail-item {
  background-color: #1A3A5E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-index-detail-title a {
  color: #E0B400;
  text-decoration: none;
}

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

.page-index-detail-description {
  color: #D0D0D0;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* CTA Bottom Section */
.page-index-cta-bottom {
  background-color: #061A33;
  padding: 80px 20px;
  text-align: center;
}

.page-index-cta-title {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-index-cta-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-cta-actions .page-index-btn {
  margin: 0 15px;
  min-width: 180px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-hero-title {
    font-size: 3em;
  }
  .page-index-hero-description {
    font-size: 1.2em;
  }
  .page-index-hero-image {
    width: 60%;
  }
  .page-index-about-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-about-image {
    order: -1;
    margin-bottom: 30px;
  }
  .page-index-app-download {
    flex-direction: column;
    text-align: center;
  }
  .page-index-app-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .page-index-app-buttons .page-index-btn {
    margin-right: 10px;
    margin-left: 10px;
  }
}

@media (max-width: 768px) {
  .page-index-hero {
    padding: 60px 15px;
    min-height: 500px;
  }
  .page-index-hero-title {
    font-size: 2.5em;
  }
  .page-index-hero-description {
    font-size: 1.1em;
  }
  .page-index-hero-actions {
    flex-direction: column;
  }
  .page-index-hero-actions .page-index-btn {
    margin: 10px 0;
  }
  .page-index-hero-image {
    width: 80%;
    opacity: 0.1;
  }
  .page-index-section-title {
    font-size: 2.2em;
  }
  .page-index-section-subtitle {
    font-size: 1em;
  }
  .page-index-app-buttons {
    flex-direction: column;
  }
  .page-index-app-buttons .page-index-btn {
    margin: 10px 0;
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-index-hero-title {
    font-size: 2em;
  }
  .page-index-section-title {
    font-size: 1.8em;
  }
  .page-index-promo-item h3 {
    font-size: 1.4em;
  }
  .page-index-cta-title {
    font-size: 2em;
  }
  .page-index-cta-actions .page-index-btn {
    width: 90%;
    margin: 10px 0;
  }
}