/* style/index-why-choose-32win.css */
.page-index-why-choose-32win {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #f0f0f0; /* Light grey for general text on dark background */
  background-color: #000080; /* Navy Blue */
  scroll-behavior: smooth;
}

.page-index-why-choose-32win__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-index-why-choose-32win__container--flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-index-why-choose-32win__container--reverse {
  flex-direction: row-reverse;
}

.page-index-why-choose-32win__container--center {
  text-align: center;
}

.page-index-why-choose-32win__hero {
  background: linear-gradient(135deg, #FFD700 0%, #FFD700 30%, #000080 100%); /* Adjusted gradient for better contrast on H1 */
  color: #000080; /* Dark text on gradient background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-why-choose-32win__hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  opacity: 0.2;
  z-index: 0;
}

.page-index-why-choose-32win__hero .page-index-why-choose-32win__container {
  position: relative;
  z-index: 1;
}

.page-index-why-choose-32win__title {
  font-size: 3.8em;
  color: #000080; /* Navy Blue for H1 on gold gradient */
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.page-index-why-choose-32win__subtitle {
  font-size: 1.6em;
  color: #333; /* Darker grey for subtitle on gradient */
  margin-bottom: 40px;
  font-weight: 500;
}

.page-index-why-choose-32win__section {
  padding: 80px 0;
}

.page-index-why-choose-32win__section:nth-of-type(even) {
  background-color: #0e0e6b; /* Slightly lighter navy for alternating sections */
}

.page-index-why-choose-32win__heading {
  font-size: 2.8em;
  color: #FFD700; /* Gold for headings */
  margin-bottom: 30px;
  text-align: left;
  font-weight: 600;
}

.page-index-why-choose-32win__content-block {
  flex: 1;
  min-width: 300px;
}

.page-index-why-choose-32win__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-why-choose-32win__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-index-why-choose-32win__list {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-index-why-choose-32win__list li {
  margin-bottom: 12px;
  color: #e0e0e0; /* Slightly lighter text for list items */
  position: relative;
  padding-left: 30px;
}

.page-index-why-choose-32win__list li::before {
  content: '✔'; /* Custom bullet point */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-why-choose-32win__list li strong {
  color: #FFD700;
}

.page-index-why-choose-32win__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Navy text on gold button */
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-why-choose-32win__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-why-choose-32win__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
  box-shadow: none;
}

.page-index-why-choose-32win__button--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-why-choose-32win__cta-buttons {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.page-index-why-choose-32win__final-call {
  font-size: 1.3em;
  margin-top: 40px;
  color: #FFD700;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-why-choose-32win__title {
    font-size: 3em;
  }
  .page-index-why-choose-32win__subtitle {
    font-size: 1.4em;
  }
  .page-index-why-choose-32win__heading {
    font-size: 2.2em;
  }
  .page-index-why-choose-32win__container--flex {
    flex-direction: column;
  }
  .page-index-why-choose-32win__container--reverse {
    flex-direction: column;
  }
  .page-index-why-choose-32win__content-block, .page-index-why-choose-32win__image-block {
    min-width: unset;
    width: 100%;
  }
  .page-index-why-choose-32win__image {
    margin-top: 30px;
  }
  .page-index-why-choose-32win__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-index-why-choose-32win__button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .page-index-why-choose-32win__title {
    font-size: 2.2em;
  }
  .page-index-why-choose-32win__subtitle {
    font-size: 1em;
  }
  .page-index-why-choose-32win__heading {
    font-size: 1.8em;
    text-align: center;
  }
  .page-index-why-choose-32win__hero {
    padding: 60px 0;
  }
  .page-index-why-choose-32win__section {
    padding: 40px 0;
  }
  .page-index-why-choose-32win__list li {
    padding-left: 25px;
  }
  .page-index-why-choose-32win__button {
    font-size: 1em;
    padding: 15px 25px;
  }
}