.page-sports {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-sports__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
  background-color: #2F6BFF; /* Primary color as fallback */
  display: flex; /* For image above content */
  flex-direction: column; /* For image above content */
  align-items: center;
  justify-content: center;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum image size */
  max-height: 600px; /* Limit hero image height */
}

.page-sports__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: #FFFFFF; /* White text on hero */
  background-color: #2F6BFF; /* Primary color for content background */
  width: 100%; /* Ensure content takes full width within container */
}

.page-sports__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
  /* No fixed font-size for H1, relying on responsive design and default scaling */
}

.page-sports__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-sports__hero-cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #FFFFFF;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px; /* Ensure button is not too small */
}

.page-sports__hero-cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-sports__section {
  padding: 60px 20px;
  border-bottom: 1px solid #D6E2FF; /* Border */
}

.page-sports__section:last-of-type {
  border-bottom: none;
}

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-sports__content-text {
  font-size: 1em;
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
}

.page-sports__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-sports__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #1F2D3D; /* Text Main */
}

.page-sports__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #2F6BFF; /* Primary color for checkmark */
  font-weight: bold;
}

.page-sports__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-sports__ordered-list .page-sports__list-item {
  padding-left: 0;
  margin-bottom: 15px;
}

.page-sports__ordered-list .page-sports__list-item::before {
  content: none; /* Remove checkmark for ordered list */
}

.page-sports__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

.page-sports__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #FFFFFF;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px; /* Ensure button is not too small */
}

.page-sports__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-sports__faq {
  background-color: #F4F7FB; /* Background */
}

.page-sports__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-question {
  font-size: 1.2em;
  color: #2F6BFF; /* Primary color for questions */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__faq-answer {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-sports__hero-title {
    font-size: 2em; /* Smaller H1 for mobile */
  }

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

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

  .page-sports__hero-cta-button,
  .page-sports__cta-button {
    width: 100%;
    max-width: 300px; /* Limit width for smaller screens */
  }

  .page-sports__hero-image,
  .page-sports__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
  }

  .page-sports__section {
    padding: 40px 15px;
  }
}

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