.challenges_and_solution {
  width: 100%;
  padding: 10vw 5.33vw;
}

.cs_heading_container {
  text-align: center;
  margin-bottom: 10.67vw;
}

.cs_heading {
  font-size: 7vw;
  font-weight: 700;
  margin-bottom: 4vw;
}

.cs_heading span {
  /* background: linear-gradient(90deg, #FF6B00 0%, #FF1F8A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  color: #ED675C;
}

.cs_subheading {
  font-size: 4.27vw;
  color: #666;
  line-height: 1.5;
  font-weight: 600;
}

.cs_nav_cont {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  margin-bottom: 6vw;
  background: #F5F7FA;
  padding: 2vw;
}

.cs_nav_cta {
  padding: 2vw 1vw;
  border-radius: 1vw;
  font-size: 3.5vw;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: 40vw;
}

.clicked_cs_nav_cta {
  background: #fff;
  box-shadow: 0 1.07vw 5.33vw rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

.cs_sections {
  width: 100%;
  transition: all 0.3s ease;
}

.hide_cs {
  display: none;
}

.active_cs {
  display: block;
}

.cs_content_wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 8vw;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  border-radius: 3vw;
}

.cs_text_content {
  width: 100%;
}

.cs_challenge_heading, .cs_solution_heading {
  font-size: 6vw;
  font-weight: 700;
  margin-bottom: 3.2vw;
}

.cs_challenge_text, .cs_solution_text {
  font-size: 4vw;
  color: #666;
  line-height: 1.6;
  margin-bottom: 6vw;
  font-weight: 600;
}

.cs_stats_container {
  display: flex;
  gap: 4vw;
  margin-bottom: 8vw;
}

.cs_stat {
  background: #fff7ed;
  padding: 5.33vw;
  border-radius: 2.67vw;
  width: 100%;
}

.cs_stat_number {
  font-size: 7vw;
  font-weight: 700;
  color: #FF6B00;
  margin-bottom: 0vw;
  text-align: center;
}

.cs_stat_text {
  font-size: 4vw;
  color: #666;
  line-height: 1.4;
  text-align: center;
}

.cs_cta_button {
  background: #FF6B00;
  color: white;
  padding: 2vw 3vw;
  border-radius: 1.6vw;
  font-size: 4vw;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cs_cta_button:hover {
  background: #E65000;
}

.cs_images {
  width: 100%;
  height: 66.67vw;
  border-radius: 3vw;
}