	/* Import fonts */
	@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600;700;900&family=Inter:wght@400;500;700&display=swap');

	body {
	  margin: 0;
	  padding: 0;
	  font-family: 'Inter', Arial, sans-serif;
	  color: #222;
	  background: #fff;
	}
	.ic-page {
	  width: 90vw;
	  max-width: 1200px;
	  margin: 0 auto;
	  padding: 2rem 1.4rem 0;
	}

	h1, h2, h3, h4, h5, h6,
	.ic-process-section h2,
	.ic-faqs h2,
	.ic-cta-section h2 {
	  font-family: 'Outfit', Arial, sans-serif;
	  font-weight: 700;
	  color: black;
	  margin-top: 0;
	}

	.ic-hero {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: space-between;
	  align-items: center;
/* 	  padding: 0rem 2rem 3rem 2rem; */
	}

	.ic-hero-content {
	  flex: 1 1 45%;
	  max-width: 800px;
	}

	.ic-hero-content h1 {
	  font-size: 2.7rem;
	  margin-bottom: 1.2rem;
	  color: black;
	}

	.ic-hero-content p {
	  font-size: 1.25rem;
	  margin-bottom: 2rem;
	  color: #555;
	}

	.ic-hero-image {
	  flex: 1 1 45%;
	  text-align: center;
	}

	.ic-hero-image img {
/* 	  max-width: 80%; */
	  margin-top: 45px;
	  height: auto;
	}

	.ic-btn, .ic-cta-btn {
	  background: linear-gradient(90deg, #4782F6, #903FFE);
	  color: #fff;
	  padding: 1rem 2.2rem;
	  text-decoration: none;
	  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	  font-size: 1rem;
	  border-radius: 6px;
	  margin-right: 1rem;
	  transition: 0.3s ease-in-out;
	  border: none;
	  cursor: pointer;
	}

	.ic-cta-btn {
	  font-size: 1.15rem;
	  padding: 16px 40px;
	  margin-top: 18px;
	  background: white;
	  color: orange;
	  font-weight: bolder;
	  border-radius: 10px;
	}

	.ic-btn:hover, .ic-cta-btn:hover {
	  transform: translateY(-2px);
	}

	.ic-challenges, .ic-faqs {
	  margin: 2rem 2rem;
	}

	.ic-challenges h2, .ic-results h2, .ic-faqs h2, .ic-process-section h2, .ic-cta-section h2 {
	  text-align: center;
	  font-size: 2rem;
	}

.ic-challenges h2 {
	margin-bottom: 2rem;
}
	.ic-results h2 {
		margin: 2rem;
	}
	.ic-challenges-cards, .ic-results-cards {
	  display: flex;
	  justify-content: center;
	  align-items: stretch;
	  gap: 2rem;
	  flex-wrap: wrap;
	  margin-bottom: 2rem;
	  /* background-color: white; */
	}

	.ic-challenge-card, .ic-result-card {
	  border-radius: 16px;
	  box-shadow: 0 4px 24px 0 rgba(16, 30, 54, 0.08);
	  padding: 1.5rem;
	  min-width: 350px;
	  transition: box-shadow 0.2s;
	  background-color: white;
	}

	.ic-challenge-card {
	  flex: 1 1 350px;
/* 	  display: flex; */
	  flex-direction: column;
	  justify-content: space-between;
	  max-width: 400px;
	}


	.ic-challenge-card:hover, .ic-result-card:hover, .ic-process-card:hover {
	  box-shadow: 0 8px 32px 0 rgba(16, 30, 54, 0.2);
	}

	.ic-card-1 img, .ic-card-2 img {
	  border-radius: 8px;
	  padding: 0.5rem;
	  margin-bottom: 0.5rem;
	  height: 50px;
	  width: 50px;
	}
	.ic-card-1 img { background: rgba(255, 0, 0, 0.1); }
	.ic-card-2 img { background: rgba(255, 166, 0, 0.1); }

	.ic-challenge-card h3 {
		font-size: 1.5rem;
	}

	.ic-challenge-card h3, .ic-result-card h3 {
	  margin-bottom: 0.5rem;
	}
	.ic-challenge-card p, .ic-result-card p, .ic-process-card p, .ic-process-desc, .ic-faqs p {
	  color: #555;
	  font-size: 1rem;
	  margin: 0;
	}

	.ic-process-section {
	  margin: 3rem 0 2rem 0;
	  text-align: center;
	}

	.ic-process h2 {
		text-align: center;
	}
	.ic-process-desc {
	  font-size: 1.15rem;
	  margin-bottom: 2.2rem;
	}

	.ic-process-cards {
	  display: flex;
	  position: relative;
	  flex-direction: row;
	  justify-content: center;
	  align-items: stretch;
	  gap: 1.8rem;
	  margin: 2rem 32px 0 32px;
	}

	.ic-process-card {
	  background: linear-gradient(135deg, rgb(149, 104, 253, 0.2) 60%, rgb(255, 103, 51, 0.2) 100%);
	  border-radius: 16px;
	  box-shadow: 0 4px 24px 0 rgba(16, 30, 54, 0.08);
	  padding: 2rem 1.5rem 1.5rem 1.5rem;
	  min-width: 280px;
	  max-width: 320px;
	  flex: 1 1 300px;
	  position: relative;
	  z-index: 1;
	  display: flex;
	  flex-direction: column;
	  align-items: flex-start;
	  transition: box-shadow 0.2s;
	}

/* 	.ic-step-number {
	  display: flex;
	  align-items: center;
	  justify-content: space-evenly;
	} */

	.ic-step-number {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  width: 100%;
	  margin-bottom: 0.7rem;
	}

	.ic-step-number span {
	  font-size: 40px;
	  font-weight: bold;
	  order: 1;
	  color: rgba(0, 0, 0, 0.4);
	}

	.ic-step-number img {
	  order: 2;
	  margin-bottom: 0;
	  margin-left: auto;
	}

	.ic-process-card img {
	  padding: 0.5rem;
	  background: #8c44ff;
	  border-radius: 8px;
	  margin-bottom: 0.5rem;
	  height: 45px;
	}

	.ic-process-card h3 {
	  font-size: 1.15rem;
	  font-weight: 700;
	  margin-bottom: 0.6rem;
	  color: #222;
	  text-align: left;
	}
	.ic-process-card p {
	  text-align: left;
	}

	.ic-process-arrow {
	  position: absolute;
	  top: 50%;
	  right: 0;
	  left: 0;
	  transform: translateY(-50%);
	  width: 40px;
	  height: 40px;
	  z-index: 2;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  margin-left: -20px;
	  background: #fff;
	  border-radius: 50%;
	  box-shadow: 0 2px 8px 0 rgba(16, 30, 54, 0.08);
	  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
	}

	.ic-process-arrow img {
	  width: 24px;
	  height: 24px;
	  display: block;
	}

	.ic-process-arrow:nth-of-type(2) {
	  left: calc(33.33% - 20px); /* after first card */
	}
	.ic-process-arrow:nth-of-type(4) {
	  left: calc(66.66% - 10px); /* after second card */
	}

	.ic-process-card:hover + .ic-process-arrow {
	  transform: translateY(-50%) translateX(20px) scale(1.1);
	  box-shadow: 0 4x 16px 0 rgba(16, 30, 54, 0.16);
	}

	.ic-result-card {
	  border-radius: 12px;
	}

	.ic-faqs {
	  padding: 2rem 0;
	  background-color: white;
	  border-radius: 20px;
	}

	.ic-faq-item {
	  overflow: hidden;
	}

	.ic-faq-item[open] {
	  background-color: #fbfbfb;
	  border-radius: 20px;
	}

	.ic-faq-item summary {
	  display: flex;
	  align-items: flex-start;
	  gap: 1rem;
	  list-style: none;
	  word-wrap: break-word;
	  cursor: pointer;
	  padding: 1rem 1rem 0.2rem 1rem;
	  margin: 0.5rem;
	  font-size: 1.3rem;
	  font-family: 'Outfit', Arial, sans-serif;
	  position: relative;
	  outline: none;
	  transition: color 0.2s;
	}

	.ic-faq-item summary span {
	  flex: 1;
	  display: block;
	  font-weight: 500;
	}

	.ic-faq-item summary::before {
	  content: url(https://shift.in/wp-content/themes/shiftnew/assets/images/plus.svg);
	  flex-shrink: 0;
	  margin-right: 0;
	  font-weight: bold;
	  vertical-align: middle;
	  margin-top: 3px;
	}

	.ic-faq-item[open] summary::before {
	  content: url(https://shift.in/wp-content/themes/shiftnew/assets/images/minus.svg);
	}

	.ic-faq-item p {
	  line-height: 1.6;
	  margin: 0 1.2rem 1.2rem 4rem;
	  max-height: 100px;
	  transition: max-height 2s cubic-bezier(0.4,0,0.2,1), opacity 1s;
	  opacity: 0;
	}

	.ic-faq-item[open] p {
	  max-height: 200px;
	  opacity: 1;
	  transition: max-height 2s cubic-bezier(0.4,0,0.2,1), opacity 1s;
	}

	.ic-cta-section {
	  background: linear-gradient(90deg, #4782F6, #903FFE);
	  border-radius: 20px;
	  text-align: center;
	  padding: 48px 24px 40px 24px;
	  margin-bottom: 50px;
	}

	.ic-cta-section h2 {
	  margin-bottom: 18px;
	  color: white;
	}

	.ic-cta-desc {
	  color: white;
	  font-size: 1.1rem;
	  margin-bottom: 35px;
	}

	.ic-results-cards {
	  display: flex;
	  justify-content: center;
	  align-items: flex-start;
	  gap: 0;
	  background: none;
	  box-shadow: none;
	  margin-bottom: 2rem;
	  padding: 0;
	}

	.ic-result-stat {
	  display: flex;
	  align-items: flex-start;
	  padding: 20px;
	  margin-right: 20px;
	  text-align: left;
	  border: 1px solid #eee;
	  border-radius: 10px;
	  box-shadow: 2px 2px 10px rgba(200, 198, 198, 0.502);
	}


	.ic-result-gradient-bar {
	  width: 4px;
	  height: 48px;
	  border-radius: 4px;
	  margin-right: 12px;
	  background: linear-gradient(180deg, #FF6A3A 0%, #903FFE 100%);
	  margin-top: 4px;
	}

	.ic-result-content {
	  display: flex;
	  flex-direction: column;
	}
	.ic-result-row {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	}
	.ic-result-icon {
	  display: flex;
	  align-items: right;
	  border-radius: 8px;
	  padding: 4px;
	  margin-left: 4px;
	  right: 0;
	}
	.ic-result-stat strong {
	  font-size: 2.2rem;
	  font-family: 'Outfit', Arial, sans-serif;
	  font-weight: 900;
	  color: #111;
	  line-height: 1;
	}

	.ic-result-stat span {
	  font-size: 1rem;
	  color: #555;
	  font-weight: 400;
	  margin-top: 0.2rem;
	  display: block;

	}

	@media (max-width: 900px) {
	  .ic-results-cards {
		flex-direction: column;
		align-items: stretch;
	  }
	  .ic-result-stat {
		flex-direction: row;
		padding: 16px;
		min-width: 0;
		margin-right: 0;
	  }
	  .ic-result-gradient-bar {
		height: 36px;
	  }
	}

	/* Tablet responsiveness: 768px–1024px */
	@media (max-width: 1024px) and (min-width: 768px) {
	  .ic-hero {
		padding: 3rem 1rem 2rem 1rem;
	  }

	  .ic-challenges-cards {
		display: flex;
		flex-direction: row;
		gap: 2rem;
		/* justify-content: center; */
	  }
	  .ic-challenge-card {
		min-width: 250px;
		min-height: 170px;
		max-width: 340px;
		flex: 1 1 250px;
		margin-bottom: 0;
	  }

	  .ic-process-cards {
		display: flex;
		flex-direction: row;
		gap: 1.5rem;
		justify-content: center;
		align-items: stretch;
	  }
	  .ic-process-card {
		min-width: 180px;
		max-width: 320px;
		flex: 1 1 260px;
		padding: 1.2rem 1rem;
	  }
	  .ic-process-arrow {
		width: 40px;
		height: 40px;
	  }
	  .ic-process-arrow:nth-of-type(2) {
		left: calc(33.33% - 20px);
	  }
	  .ic-process-arrow:nth-of-type(4) {
		left: calc(66.66% - 10px);
	  }
	  .ic-process-card p {
		text-align: left;
	  }
	  .ic-faqs,
	  .ic-results-cards {
		padding-left: 1rem;
		padding-right: 1rem;
	  }

	  .ic-result-card {
		min-width: 300px;
		padding: 1.2rem 1rem;
	  }
	  h1 {
		font-size: 2.1rem;
	  }
	  h2 {
		font-size: 1.4rem;
	  }
	}

	@media (max-width: 767px) {
		.ic-page {
			padding: 0;
		}
	  .ic-hero {
		flex-direction: column;
		align-items: stretch;
		padding: 2rem 0.5rem 1rem 0.5rem;
	  }
	  .ic-hero-content {
		order: 1;
		width: 100%;
		padding: 0;
		text-align: left;
	  }
	  .ic-hero-content h1 {
		line-height: 1.2;
	  }
	  .ic-hero-content .ic-btn,
	  .ic-hero-content .ic-cta-btn {
		display: block;
		width: 100%;
		margin: 1.5rem 0 0 0;
		font-size: 1.1rem;
		text-align: center;
	  }
	  .ic-hero-image {
		order: 2;
		margin: 1.5rem 0 0 0;
		display: flex;
		justify-content: center;
	  }
	  .ic-hero-image img {
		max-width: 340px;
		height: auto;
	  }
	  .ic-challenges {
		margin: 2rem 0;
	  }
	  .ic-challenge-card, .ic-result-card {
		min-width: 320px;
	  }
	  .ic-results-cards, .ic-challenges-cards {
		gap: 1rem;
	  }
	  .ic-challenges h2, .ic-process h2, .ic-results h2 {
		text-align: left;
		font-size: 28px;
	  }
		.ic-results h2{
			margin-left: 0; 
		}
	  .ic-process-section{
		display: flex;
		flex-direction: column;
		align-items: center;
	  }
	  .ic-process-section h2 {
		text-align: left;
		font-size: 28px;
	  }
	  .ic-process-cards {
		flex-direction: column;
		gap: 0.5rem;
		position: relative;
		margin: 0;
	  }
	  .ic-process-card {
		margin-bottom: 0;
		position: relative;
/* 		max-height: 150px; */
		align-items: flex-start;
		flex: none;
		max-width: none;
	  }
	  .ic-process-arrow {
		position: static;
		margin: -2rem auto 0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 40px;
		background: #fff;
		border-radius: 50%;
		box-shadow: 0 2px 8px 0 rgba(16, 30, 54, 0.08);
		transform: rotate(90deg);
		transition: 0.3s cubic-bezier(.4,2,.6,1); 
	  }
	  .ic-process-card:hover + .ic-process-arrow {
		transform: rotate(90deg) translateX(50%) translateX(20px) scale(1.1);
		box-shadow: 0 4x 16px 0 rgba(16, 30, 54, 0.16);
	  }
	  .ic-process-arrow img {
		width: 22px;
		height: 22px;
	  }
	  .ic-faqs {
		border-radius: 16px;
		margin: 2rem 0;
	  }
	  .ic-faqs h2 {
		text-align: left;
		font-size: 32px;
		margin-bottom: 1rem;
	  }
	  .ic-faq-item summary{
		font-size: 1.2rem;
		padding-left: 0rem;
		margin-left: 0.5rem;
	  } 
	  .ic-faq-item p {
		margin: 0 1.2rem 1.2rem 3rem;
	  }
	  .ic-cta-section {
		margin: 2rem 0;
		padding: 2rem;
		border-radius: 16px;
		text-align: center;
	  }
	  .ic-cta-section h2 {
		font-size: 1.5rem;
		margin-bottom: 0.8rem;
	  }
	  .ic-cta-desc {
		font-size: 1rem;
	  }
	  .ic-cta-btn {
		width: 100%;
		max-width: 100%;
		margin-top: 1.2rem;
		font-size: 1.1rem;
	  }
	}