.page-sports {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
  min-height: 500px;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-height: 700px; /* Limit height for aesthetic */
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 8px;
}

.page-sports__hero-title {
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
  font-size: clamp(2.2em, 4vw, 3.5em);
}

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

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

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

.page-sports__cta-button--secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F;
  border: 1px solid #2AD16F;
}

.page-sports__cta-button--secondary:hover {
  transform: translateY(-2px);
  background: #2E7A4E; /* Border */
  color: #F2FFF6;
}

.page-sports__cta-button--full-width {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.page-sports__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-sports__section-title {
  color: #F2FFF6;
  font-size: 2.5em;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #2AD16F, #13994A);
}

.page-sports__text-block {
  color: #A7D9B8;
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: left;
}

.page-sports__grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-sports__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-sports__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-sports__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-sports__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-sports__card-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin: 20px 15px 10px;
  flex-grow: 1;
}

.page-sports__card-title a {
  color: #F2FFF6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-sports__card-title a:hover {
  color: #2AD16F;
}

.page-sports__card-text {
  color: #A7D9B8;
  padding: 0 15px 20px;
  font-size: 0.95em;
  flex-grow: 1;
  text-align: left;
}

.page-sports__card .page-sports__cta-button {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

.page-sports__feature-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-sports__feature-text {
  color: #A7D9B8;
  font-size: 0.95em;
  line-height: 1.5;
}

.page-sports__section--faq {
  background-color: #0A4B2C; /* Deep Green */
}

.page-sports__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-sports__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1em;
  background-color: #11271B;
  list-style: none;
  user-select: none;
}

.page-sports__faq-question::-webkit-details-marker {
  display: none;
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F;
  transition: transform 0.3s ease;
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
  transform: rotate(45deg);
}

.page-sports__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8;
  line-height: 1.6;
  font-size: 1em;
}

.page-sports__faq-answer p {
  margin-bottom: 10px;
}

.page-sports__faq-answer a {
  color: #2AD16F;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-sports__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-sports__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .page-sports__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    min-height: 400px;
  }
  .page-sports__hero-content {
    padding: 30px 15px;
  }
  .page-sports__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__section {
    padding: 40px 15px;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
  .page-sports__grid {
    grid-template-columns: 1fr;
  }
  .page-sports__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    margin-bottom: 10px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-sports__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .page-sports__feature-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-sports__card-image {
    height: auto;
  }
  .page-sports__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-sports__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-sports__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-section {
    min-height: 300px;
  }
  .page-sports__hero-content {
    padding: 20px 10px;
  }
  .page-sports__hero-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-sports__hero-description {
    font-size: 0.9em;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__cta-button {
    font-size: 0.9em;
  }
  .page-sports__card-title {
    font-size: 1.3em;
  }
  .page-sports__card-text {
    font-size: 0.9em;
  }
}