.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #0A192F, so text is light */
  background-color: #0A192F;
}

.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  color: #ffffff;
  background-color: #0A192F; /* Ensure dark background for hero */
}

.page-sports__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-sports__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-sports__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-sports__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
}

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #0A192F;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-sports__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-sports__section {
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  background-color: #0A192F;
}

.page-sports__section--intro {
  background-color: #0A192F;
  color: #ffffff;
}

.page-sports__dark-bg {
  background-color: #0A192F;
  color: #ffffff;
}

.page-sports__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-sports__heading {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FFD700;
  font-weight: bold;
}

.page-sports__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-sports__paragraph--cta {
  margin-top: 40px;
  font-weight: bold;
  color: #FFD700;
}

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

.page-sports__card {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-sports__card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
}

.page-sports__card-text {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-sports__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-sports__btn-secondary:hover {
  background: #FFD700;
  color: #0A192F;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.page-sports__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
}

.page-sports__list-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-sports__list-item strong {
  color: #FFD700;
}

.page-sports__btn-primary {
  display: inline-block;
  padding: 15px 35px;
  background: #FFD700;
  color: #0A192F;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-sports__btn-primary:hover {
  background: #e6c200;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-sports__button-group--center {
  justify-content: center;
}

.page-sports__feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-sports__feature-card img {
  
  
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Subtle shadow for icons */
}

.page-sports__feature-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #FFD700;
  font-weight: bold;
}

.page-sports__feature-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

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

.page-sports__step-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-sports__step-number {
  font-size: 3em;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.3);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 0;
}

.page-sports__step-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.page-sports__step-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-sports__btn-primary--small, .page-sports__btn-secondary--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-sports__promo-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sports__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-sports__promo-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports__promo-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
}

.page-sports__promo-text {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* FAQ styles */
.page-sports__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-sports__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-sports__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #f0f0f0;
}