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

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

.page-index__highlight {
  color: #0056b3; /* Darker shade of primary for emphasis on light background */
  font-weight: bold;
}

.page-index__bg--light {
  background-color: #f8f9fa; /* Light background for contrast */
}

.page-index__bg--dark {
  background-color: #003f8e; /* Darker shade of primary for dark background */
  color: #fff;
}

.page-index__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index__section-title--light {
  color: #ffc107; /* Secondary color for titles on dark background */
}

.page-index__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.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;
  white-space: nowrap;
}

.page-index__btn--primary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-index__btn--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-index__btn--secondary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-index__btn--secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-index__btn--text {
  background: none;
  border: none;
  color: #007bff;
  padding: 0;
  margin-top: 10px;
  font-size: 1em;
  text-decoration: underline;
}

.page-index__btn--text:hover {
  color: #0056b3;
}

.page-index__btn--large {
  padding: 15px 30px;
  font-size: 1.1em;
}

/* Hero Section */
.page-index__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient */
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
  min-height: 500px;
}

.page-index__hero-content {
  max-width: 600px;
  text-align: left;
  padding: 20px;
}

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

.page-index__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #e0e0e0;
}

.page-index__hero-actions .page-index__btn {
  margin-right: 15px;
  margin-bottom: 15px;
}

.page-index__hero-image-wrapper {
  max-width: 500px;
  flex-shrink: 0;
}

.page-index__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.page-index__about {
  padding: 60px 0;
  text-align: center;
}

.page-index__about .page-index__text-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__image {
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index__image--right {
  float: right;
  margin-left: 30px;
  width: 40%;
  max-width: 400px;
}

/* Features Section */
.page-index__features {
  padding: 60px 0;
  text-align: center;
}

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

.page-index__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index__feature-item:hover {
  transform: translateY(-10px);
}

.page-index__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-index__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index__feature-description {
  font-size: 1em;
  color: #555;
}

/* CTA Banner */
.page-index__cta-banner {
  background-color: #007bff;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-index__cta-content {
  position: relative;
  z-index: 2;
}

.page-index__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.page-index__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-index__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

/* Details List Section */
.page-index__details-list {
  padding: 60px 0;
  text-align: center;
}

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

.page-index__detail-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index__detail-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-index__detail-title a {
  color: #007bff;
  text-decoration: none;
}

.page-index__detail-title a:hover {
  color: #0056b3;
  text-decoration: underline;
}

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

/* Trust & Safety Section */
.page-index__trust-safety {
  padding: 60px 0;
  text-align: center;
}

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

.page-index__trust-item {
  background-color: #0056b3; /* Darker blue for contrast on dark background */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  color: #fff;
}

.page-index__trust-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(1.5); /* Make icons brighter on dark background */
}

.page-index__trust-title {
  font-size: 1.5em;
  color: #ffc107; /* Secondary color for titles on dark background */
  margin-bottom: 15px;
}

.page-index__trust-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Final Call to Action */
.page-index__call-to-action {
  padding: 80px 0;
  text-align: center;
  background-color: #f8f9fa;
}

.page-index__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Contact Info */
.page-index__contact-info {
  padding: 60px 0;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index__hero {
    flex-direction: column;
    text-align: center;
  }

  .page-index__hero-content {
    max-width: 100%;
  }

  .page-index__hero-title {
    font-size: 2.8em;
  }

  .page-index__hero-description {
    font-size: 1.1em;
  }

  .page-index__image--right {
    float: none;
    margin: 30px auto;
    width: 80%;
  }

  .page-index__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index__section-title {
    font-size: 2em;
  }

  .page-index__hero {
    padding: 60px 0;
  }

  .page-index__hero-title {
    font-size: 2.2em;
  }

  .page-index__hero-description {
    font-size: 1em;
  }

  .page-index__hero-actions .page-index__btn {
    display: block;
    margin-right: 0;
    width: 100%;
  }

  .page-index__feature-grid, .page-index__detail-grid, .page-index__trust-grid {
    grid-template-columns: 1fr;
  }

  .page-index__cta-title {
    font-size: 1.8em;
  }

  .page-index__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 1.8em;
  }

  .page-index__section-title {
    font-size: 1.8em;
  }

  .page-index__cta-title {
    font-size: 1.5em;
  }

  .page-index__hero-image-wrapper {
    padding: 0 15px;
  }
}