.page-sports {
  /* Default for desktop, ensuring header offset */
  padding-top: var(--header-offset, 120px);
  background-color: #f8f8f8;
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B14B;
  border-radius: 2px;
}

.page-sports__section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2463;
  padding: 0;
}

.page-sports__hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px; /* Minimum height for hero section */
}

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

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-sports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B14B;
  line-height: 1.2;
  font-weight: 700;
}

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

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

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

.page-sports__button--primary {
  background-color: #E0B14B;
  color: #0A2463;
}

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

.page-sports__button--secondary {
  background-color: transparent;
  color: #E0B14B;
  border: 2px solid #E0B14B;
}

.page-sports__button--secondary:hover {
  background-color: rgba(224, 177, 75, 0.1);
  transform: translateY(-2px);
}

.page-sports__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-sports__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-sports__features-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-sports__feature-card {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-sports__feature-icon {
  width: 100%; /* Ensure image fills card width */
  height: 200px; /* Minimum height for content images */
  object-fit: cover; /* Crop image to fit */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports__card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-sports__card-text {
  font-size: 1em;
  color: #555555;
}

.page-sports__how-to-start-section {
  padding: 80px 0;
  background-color: #f0f4f7;
}

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

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

.page-sports__step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #E0B14B;
  color: #0A2463;
  font-size: 2em;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-25deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__step-card .page-sports__card-title {
  margin-top: 40px;
}

.page-sports__promotions-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-sports__promo-card {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-sports__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
}

.page-sports__promo-card .page-sports__card-title {
  padding: 20px 20px 10px;
  margin-bottom: 0;
}

.page-sports__promo-card .page-sports__card-text {
  padding: 0 20px 20px;
  color: #555555;
}

.page-sports__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

.page-sports__faq-section {
  padding: 80px 0;
  background-color: #f0f4f7;
}

.page-sports__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports__accordion-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-sports__accordion-header {
  padding: 20px;
  font-size: 1.3em;
  color: #0A2463;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-sports__accordion-header:hover {
  background-color: #f5f5f5;
}

.page-sports__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #E0B14B;
  transition: transform 0.3s ease;
}

.page-sports__accordion-header.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-sports__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-sports__accordion-content p {
  padding-bottom: 20px;
  color: #555555;
}

.page-sports__more-questions {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #555555;
}

.page-sports__more-questions a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-sports__more-questions a:hover {
  text-decoration: underline;
}

.page-sports__cta-section {
  padding: 80px 0;
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
}

.page-sports__cta-container {
  max-width: 800px;
}

.page-sports__cta-title {
  font-size: 2.8em;
  color: #E0B14B;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 3em;
  }
  .page-sports__hero-description {
    font-size: 1.1em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-sports {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-sports__hero-container {
    min-height: 450px;
  }
  .page-sports__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-sports__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-sports__features-grid,
  .page-sports__steps-grid,
  .page-sports__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__feature-card,
  .page-sports__step-card,
  .page-sports__promo-card {
    padding: 25px;
  }
  .page-sports__feature-icon,
  .page-sports__promo-image {
    width: 100%;
    max-width: 100%; /* Ensure images do not overflow */
    height: auto;
    object-fit: cover;
  }
  .page-sports__cta-title {
    font-size: 2em;
  }
  .page-sports__cta-description {
    font-size: 1em;
  }
  .page-sports__accordion-header {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-sports__accordion-content p {
    font-size: 0.95em;
  }
  /* Ensure no horizontal scrolling */
  .page-sports {
    overflow-x: hidden;
  }
  .page-sports__container {
    padding: 0 15px;
  }
  .page-sports__hero-content {
    padding: 20px;
  }
}

@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.5em;
  }
  .page-sports__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-sports__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-sports__card-title {
    font-size: 1.3em;
  }
  .page-sports__cta-title {
    font-size: 1.8em;
  }
}