.page-sports {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-sports .section-title {
  font-size: 36px;
  color: #1E90FF; /* Dodger Blue */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-sports .section-description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-sports .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Dodger Blue */
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
  border: 2px solid #FFD700;
}

.page-sports .cta-button:hover {
  background-color: #1E90FF; /* Dodger Blue */
  color: #FFD700; /* Gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(30, 144, 255, 0.5);
  border: 2px solid #1E90FF;
}

.page-sports .cta-button-small {
  display: inline-block;
  padding: 10px 25px;
  background-color: #1E90FF; /* Dodger Blue */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(30, 144, 255, 0.3);
  border: 1px solid #1E90FF;
}

.page-sports .cta-button-small:hover {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Dodger Blue */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
  border: 1px solid #FFD700;
}

.page-sports .hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.page-sports .hero-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.page-sports .hero-image-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
}

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

.page-sports .hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 900;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports .hero-description {
  font-size: 22px;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 500;
}

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

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

.page-sports .feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-sports .feature-icon {
  width: 250px; /* Min 200x200px */
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports .feature-title {
  font-size: 24px;
  color: #1E90FF; /* Dodger Blue */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports .feature-text {
  font-size: 16px;
  color: #555555;
}

.page-sports .cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-sports .advantages-section {
  padding: 80px 0;
  background-color: #f0f7ff;
}

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

.page-sports .advantage-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-sports .advantage-icon {
  width: 220px; /* Min 200x200px */
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports .advantage-title {
  font-size: 22px;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports .advantage-text {
  font-size: 16px;
  color: #555555;
}

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

.page-sports .guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-sports .step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-sports .step-icon {
  width: 200px; /* Min 200x200px */
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports .step-title {
  font-size: 24px;
  color: #1E90FF; /* Dodger Blue */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports .step-text {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.page-sports .promo-section {
  padding: 80px 0;
  background-color: #fffaf0;
}

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

.page-sports .promo-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-sports .promo-image {
  width: 250px; /* Min 200x200px */
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-sports .promo-title {
  font-size: 24px;
  color: #1E90FF; /* Dodger Blue */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports .promo-text {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.page-sports .cta-button-promo {
  display: inline-block;
  padding: 12px 30px;
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Dodger Blue */
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(255, 215, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-sports .cta-button-promo:hover {
  background-color: #1E90FF; /* Dodger Blue */
  color: #FFD700; /* Gold */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(30, 144, 255, 0.4);
  border: 1px solid #1E90FF;
}

.page-sports .faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-sports .faq-list {
  margin-top: 50px;
}

/* FAQ default state - answer hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f0f7ff;
  border-radius: 0 0 5px 5px;
  color: #333333;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Question styling */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 10px; /* Space between FAQ items */
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #1E90FF; /* Dodger Blue */
  font-weight: bold;
}

.faq-question:hover {
  background: #f5f5f5;
}

/* Toggle icon */
.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Gold */
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle {
  color: #1E90FF; /* Dodger Blue */
}

.page-sports .final-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1E90FF, #FFD700);
  text-align: center;
  color: #ffffff;
}

.page-sports .final-cta-section .section-title {
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-sports .final-cta-section .section-description {
  color: #ffffff;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-sports .hero-title {
    font-size: 40px;
  }
  .page-sports .hero-description {
    font-size: 18px;
  }
  .page-sports .section-title {
    font-size: 30px;
  }
  .page-sports .section-description {
    font-size: 16px;
  }
  .page-sports .feature-icon, .page-sports .advantage-icon, .page-sports .step-icon, .page-sports .promo-image {
    width: 200px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .page-sports .hero-title {
    font-size: 32px;
  }
  .page-sports .hero-description {
    font-size: 16px;
  }
  .page-sports .cta-button {
    padding: 12px 25px;
    font-size: 18px;
  }
  .page-sports .section-title {
    font-size: 26px;
  }
  .page-sports .feature-grid, .page-sports .advantages-grid, .page-sports .guide-steps, .page-sports .promo-grid {
    grid-template-columns: 1fr;
  }
  .page-sports .feature-item, .page-sports .advantage-item, .page-sports .step-item, .page-sports .promo-card {
    padding: 20px;
  }
  .faq-question {
    padding: 12px;
    flex-direction: row;
    align-items: center;
  }
  .faq-question h3 {
    font-size: 16px;
    margin-right: 10px;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-sports .hero-content-overlay {
    padding: 20px;
  }
  .page-sports .hero-title {
    font-size: 28px;
  }
  .page-sports .hero-description {
    font-size: 14px;
  }
  .page-sports .cta-button {
    padding: 10px 20px;
    font-size: 16px;
  }
  .page-sports .section-title {
    font-size: 22px;
  }
  .page-sports .section-description {
    font-size: 14px;
  }
  .page-sports .feature-icon, .page-sports .advantage-icon, .page-sports .step-icon, .page-sports .promo-image {
    width: 180px; /* Still > 200px if original is larger */
    height: 120px;
  }
  .page-sports .feature-title, .page-sports .advantage-title, .page-sports .step-title, .page-sports .promo-title {
    font-size: 20px;
  }
  .page-sports .feature-text, .page-sports .advantage-text, .page-sports .step-text, .page-sports .promo-text {
    font-size: 14px;
  }
}