.page-sports {
  color: #333333; /* Dark text for default light body background */
}

.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
}

.page-sports__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 51, 102, 0.7); /* Main color with transparency */
  border-radius: 10px;
  color: #ffffff;
}

.page-sports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Accent color for title */
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-sports__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-sports__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.page-sports__button--primary {
  background-color: #FFCC00; /* Accent color */
  color: #003366; /* Main color */
  border: 2px solid #FFCC00;
}

.page-sports__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-sports__button--secondary {
  background-color: transparent;
  color: #FFCC00; /* Accent color */
  border: 2px solid #FFCC00;
}

.page-sports__button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-sports__section {
  padding: 80px 0;
}

.page-sports__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

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

.page-sports__section-title {
  font-size: 2.8em;
  color: #003366; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-sports__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Accent color */
  margin: 15px auto 0;
}

.page-sports__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-sports__text-content a {
  color: #003366;
  text-decoration: underline;
}

.page-sports__text-content a:hover {
  color: #FFCC00;
}

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

.page-sports__feature-card,
.page-sports__sport-card,
.page-sports__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__feature-card:hover,
.page-sports__sport-card:hover,
.page-sports__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-image,
.page-sports__sport-image,
.page-sports__promo-image {
  width: 100%;
  height: 250px; /* Consistent height for images */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-sports__feature-title,
.page-sports__sport-title,
.page-sports__promo-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-sports__feature-description,
.page-sports__sport-description,
.page-sports__promo-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-sports__content-two-col {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-sports__content-two-col--reversed {
  flex-direction: row-reverse;
}

.page-sports__content-text {
  flex: 1;
}

.page-sports__content-text .page-sports__text-content {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-sports__content-image {
  flex: 1;
}

.page-sports__image-full {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-sports__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFCC00"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-sports__list-highlight {
  color: #003366;
}

.page-sports__button--action {
  background-color: #003366;
  color: #ffffff;
  border: 2px solid #003366;
  margin-top: 20px;
}

.page-sports__button--action:hover {
  background-color: #002244;
  border-color: #002244;
}

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

.page-sports__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #003366;
  color: #ffffff;
  border: 2px solid #003366;
  margin-top: 10px;
}

.page-sports__button--small:hover {
  background-color: #FFCC00;
  color: #003366;
  border-color: #FFCC00;
}

.page-sports__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }
  .page-sports__hero-description {
    font-size: 1.2em;
  }
  .page-sports__section-title {
    font-size: 2.2em;
  }
  .page-sports__content-two-col {
    flex-direction: column;
  }
  .page-sports__content-two-col--reversed {
    flex-direction: column;
  }
  .page-sports__content-text,
  .page-sports__content-image {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    min-height: 500px;
  }
  .page-sports__hero-title {
    font-size: 2.2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__button {
    width: 100%;
    max-width: 300px;
  }
  .page-sports__section {
    padding: 50px 0;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__text-content {
    font-size: 0.95em;
  }
  .page-sports__features-grid,
  .page-sports__sports-grid,
  .page-sports__promo-cards {
    grid-template-columns: 1fr;
  }
  /* Ensure images do not overflow on mobile */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
  .page-sports__feature-image, .page-sports__sport-image, .page-sports__promo-image {
    height: auto; /* Allow height to adjust naturally */
    min-height: 200px; /* Minimum height for content images */
  }
  .page-sports__image-full {
    min-height: 200px;
  }
  .page-sports__button--small {
    width: auto;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }
  .page-sports__hero-description {
    font-size: 0.9em;
  }
  .page-sports__section-title {
    font-size: 1.6em;
  }
  .page-sports__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-sports__list li {
    font-size: 1em;
  }
}