.page-index-why-choose-super {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

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

.page-index-why-choose-super__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-index-why-choose-super__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-index-why-choose-super__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 400px; /* Ensure minimum height for hero image */
}

.page-index-why-choose-super__hero-content {
  position: relative; /* Stays in document flow below image */
  z-index: 2;
  padding: 0 20px;
  max-width: 900px;
}

.page-index-why-choose-super__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  font-weight: bold;
  color: #F2C14E; /* Primary color for emphasis */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-index-why-choose-super__hero-description {
  font-size: 1.2rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

.page-index-why-choose-super__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* General Section Styling */
.page-index-why-choose-super__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Primary color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.3;
}

.page-index-why-choose-super__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

/* Dark Background Sections */
.page-index-why-choose-super__dark-section {
  background-color: #111111; /* Card BG, used for sections */
  padding: 60px 0;
}

.page-index-why-choose-super__dark-section .page-index-why-choose-super__section-title,
.page-index-why-choose-super__dark-section .page-index-why-choose-super__text-block,
.page-index-why-choose-super__dark-section .page-index-why-choose-super__content-subtitle,
.page-index-why-choose-super__dark-section .page-index-why-choose-super__info-title,
.page-index-why-choose-super__dark-section .page-index-why-choose-super__info-description {
  color: #FFF6D6; /* Ensure light text on dark background */
}

/* Feature Cards */
.page-index-why-choose-super__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}