@media (max-width: 767.98px) {
  #progressbar {
    display: none !important;
    /* Hide nav pills on mobile */
  }

  #mobile-nav {
    display: block !important;
    /* Show dropdown on mobile */
  }
}

@media (min-width: 768px) {
  #mobile-nav {
    display: none !important;
    /* Hide dropdown on desktop */
  }
}

/* Style the dropdown */
#mobile-nav {
  max-width: 100%;
  margin: 0 auto;
}

/* Sponsorship Card */
.sponsorship-card {
  background-color: #202020;
  padding: 30px;
  border: 1px solid #3d3d3d;
  border-radius: 5px;
  text-align: center;
  height: auto !important;
  position: relative;
  transition: transform 0.3s ease;
}

.sponsorship-card.recommended {
  border: 2px solid #a80025;
  background-color: #2a2a2a;
  transform: scale(1.05);
}

.sponsorship-card.recommended .recommended-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #a80025;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 3px;
}

.sponsorship-card.recommended .recommended-label::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  margin-left: 10px;
  vertical-align: middle;
}

.sponsorship-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.sponsorship-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.sponsorship-price {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.sponsorship-button {
  display: inline-block;
  background-color: #a80025;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 30px;
  border: none;
  border-radius: 3px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.sponsorship-button:hover {
  background-color: #8b001f;
}

.sponsorship-benefits-title {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}

.sponsorship-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
  text-align: left;
}

.sponsorship-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.sponsorship-benefits li.check::before {
  content: "";
  position: absolute;
  left: 0;
  color: #a80025;
  font-size: 1.2rem;
}

.sponsorship-benefits li.cross::before {
  content: "✘";
  position: absolute;
  left: 0;
  color: #666;
  font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .sponsorship-title {
    font-size: 1.3rem;
  }

  .sponsorship-price {
    font-size: 2.5rem;
  }

  .sponsorship-benefits {
    font-size: 0.8rem;
  }

  .sponsorship-card.recommended {
    transform: scale(1);
  }
}
