.pricing-text {
	color: var(--primary-color);
  }
  
  /************************************/
  /***      08. Our Pricing Css     ***/
  /************************************/
  
  .our-pricing {
	background: var(--white-color);
	padding: 60px 0;
  }
  
  .pricing-content {
	position: sticky;
	top: 100px;
	margin-right: 0;
	margin-bottom: 40px;
  }
  
  .pricing-box-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
  }
  
  .pricing-box {
	width: 100%;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 20px;
	transition: all 0.3s ease;
  }
  
  .bronze-pack {
	background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
	color: white;
  }
  
  .silver-pack {
	background: linear-gradient(263deg, #ffffff 0.16%, var(--dark-color) 99.84%);
	color: white;
  }
  
  .gold-pack {
	background: linear-gradient(263deg, #f5e400 0.16%, var(--dark-color) 99.84%);
	color: white;
  }
  .company-pack {
	background: linear-gradient(263deg, #13000b 0.16%, var(--primary-color) 99.84%);
	color: white;
  }
  .pricing-link.active {
	font-weight: bold;
  }
  .company-pack .pricing-title h2,
  .company-pack .pricing-title h3,
  .company-pack .pricing-title h4,
  .bronze-pack .pricing-title h2,
  .bronze-pack .pricing-title h3,
  .bronze-pack .pricing-title h4,
  .silver-pack .pricing-title h3,
  .silver-pack .pricing-title h2,
  .silver-pack .pricing-title h4,
  .gold-pack .pricing-title h2,
  .gold-pack .pricing-title h3,
  .gold-pack .pricing-title h4 {
	color: white;
  }
  
  .pricing-title h2 {
	font-size: 40px;
	line-height: 1.2;
  }
  
  .pricing-box-content {
	width: 100%;
	text-align: center;
	border-right: none;
	border-bottom: 1px solid var(--divider-color);
	padding-right: 0;
	margin-right: 0;
	padding-bottom: 20px;
	margin-bottom: 20px;
  }
  
  .pricing-box.highlighted-box .pricing-box-content {
	border-color: var(--dark-divider-color);
  }
  
  .pricing-title p {
	margin-bottom: 10px;
  }
  
  .pricing-box.highlighted-box .pricing-title p,
  .pricing-box.highlighted-box .pricing-title h2 {
	color: var(--white-color);
  }
  
  .pricing-title h2 sup {
	font-size: 24px;
  }
  
  .pricing-title h2 sub {
	font-size: 16px;
	font-weight: 400;
	bottom: 0;
  }
  
  .pricing-box.highlighted-box .pricing-title h2 sub {
	color: var(--white-color);
  }
  
  .pricing-btn {
	margin-top: 20px;
  }
  
  .pricing-list {
	width: 100%;
  }
  
  .pricing-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
  }
  
  .pricing-list-entreprise ul {
	font-size: 14px;
  }
  
  .pricing-list ul li {
	position: relative;
	width: 100%;
	padding-left: 25px;
  }
  
  .pricing-list ul li:before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
  }
  
  .pricing-box.highlighted-box .pricing-list ul li {
	color: var(--white-color);
  }
  
  .pricing-benefit-list {
	margin-top: 30px;
  }
  
  .pricing-benefit-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 15px;
  }
  
  .pricing-benefit-list ul li {
	font-weight: 500;
	text-align: center;
	width: 100%;
  }
  
  .pricing-benefit-list ul li img {
	max-width: 20px;
	margin-right: 15px;
  }
  
  /* Responsive Media Queries */
  @media (min-width: 576px) {
	.pricing-box {
	  padding: 30px;
	}
	
	.pricing-list ul li {
	  width: calc(50% - 8px);
	}
	
	.pricing-benefit-list ul li {
	  width: auto;
	}
  }
  
  @media (min-width: 768px) {
	.our-pricing {
	  padding: 80px 0;
	}
	
	.pricing-content {
	  margin-right: 30px;
	}
	
	.pricing-title h2 {
	  font-size: 45px;
	}
	
	.pricing-title h2 sup {
	  font-size: 28px;
	}
  }
  
  @media (min-width: 992px) {
	.our-pricing {
	  padding: 100px 0;
	}
	
	.pricing-content {
	  margin-right: 100px;
	}
	
	.pricing-box {
	  flex-direction: row;
	  padding: 40px;
	}
	
	.pricing-box-content {
	  width: calc(36% - 15px);
	  text-align: center;
	  border-right: 1px solid var(--divider-color);
	  border-bottom: none;
	  padding-right: 30px;
	  padding-bottom: 0;
	  margin-right: 30px;
	  margin-bottom: 0;
	}
	
	.pricing-list {
	  width: calc(64% - 15px);
	}
	
	.pricing-list ul {
	  gap: 20px;
	}
	
	.pricing-title h2 {
	  font-size: 50px;
	}
	
	.pricing-title h2 sup {
	  font-size: 30px;
	}
  }