/* Correction pour le problème de dépassement du texte dans service-short-quote */
.service-short-quote {
  flex-wrap: wrap;
  gap: 40px;
}

.service-short-quote .check-area-main-sd {
  min-width: auto;
  width: 100%;
  max-width: 100%;
}

.service-short-quote .check-area-main-sd .single-check {
  display: flex;
  align-items: flex-start;
  margin: 15px 0;
}

.service-short-quote .check-area-main-sd .single-check i {
  margin-right: 10px;
  margin-top: 5px;
}

.service-short-quote .check-area-main-sd .single-check p {
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Ajustements responsifs */
@media only screen and (max-width: 991px) {
  .service-short-quote {
    gap: 30px;
  }
}

/* Styles pour le tableau de comparaison des plateformes publicitaires */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
}

.table-bordered {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.table-bordered th,
.table-bordered td {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px 18px;
  vertical-align: top;
  line-height: 1.6;
}

.table-bordered thead th {
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 18px 15px;
}

.table-bordered tbody tr {
  background-color: rgba(30, 30, 30, 0.6);
  transition: background-color 0.3s ease;
}

.table-bordered tbody tr:nth-child(odd) {
  background-color: rgba(40, 40, 40, 0.6);
}

.table-bordered tbody tr:hover {
  background-color: rgba(60, 60, 60, 0.7);
}

.table-bordered td strong {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.list-unstyled li {
  margin-bottom: 10px;
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}

.list-unstyled li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Styles spécifiques pour chaque colonne */
.table-bordered td:first-child {
  font-weight: 600;
  background-color: rgba(50, 50, 50, 0.5);
}

.table-bordered td:nth-child(4),
.table-bordered td:nth-child(5) {
  text-align: center;
  font-weight: 500;
}

/* Styles responsifs pour le tableau */
@media only screen and (max-width: 991px) {
  .table-responsive {
    border: 0;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
  
  .table-bordered th,
  .table-bordered td {
    padding: 12px;
    font-size: 14px;
  }
  
  .list-unstyled li {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
  }
  
  .table-bordered td strong {
    font-size: 15px;
  }
}

/* Styles pour la section Stratégies de Campagnes */
.subtitle {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}

.case-item {
  background-color: rgba(40, 40, 40, 0.5);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 4px solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.success-cases .case-item {
  border-left-color: #3EB75E;
}

.failure-cases .case-item {
  border-left-color: #FF0003;
}

.platform-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
  display: flex;
  align-items: center;
}

.platform-name i {
  margin-right: 10px;
  font-size: 20px;
}

.fa-facebook-f {
  color: #3B5997;
}

.fa-google {
  color: #4285F4;
}

.fa-tiktok {
  color: #EE1D52;
}

.case-item p.disc {
  margin-bottom: 0;
  line-height: 1.6;
}

.case-item strong {
  color: #fff;
  font-weight: 600;
}

.conclusion-box {
  background-color: rgba(60, 60, 60, 0.6);
  border-radius: 10px;
  padding: 20px 25px;
  border-left: 4px solid #FFD166;
}

.conclusion-box p.disc {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

/* Styles pour les cartes de stratégie */
.strategy-card {
  height: 100%;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.strategy-card:hover {
  transform: translateY(-5px);
}

.strategy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.success-card {
  background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(30, 30, 30, 0.9));
  border: 1px solid rgba(62, 183, 94, 0.3);
}

.success-card::before {
  background-color: #3EB75E;
}

.failure-card {
  background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(30, 30, 30, 0.9));
  border: 1px solid rgba(255, 0, 3, 0.3);
}

.failure-card::before {
  background-color: #FF0003;
}

.strategy-card .card-header {
  margin-bottom: 20px;
  position: relative;
}

.strategy-card .card-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
}

.success-card .card-header::after {
  background-color: rgba(62, 183, 94, 0.7);
}

.failure-card .card-header::after {
  background-color: rgba(255, 0, 3, 0.7);
}

.strategy-card .subtitle {
  margin-bottom: 0;
}

.strategy-card .case-item {
  background-color: rgba(20, 20, 20, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.strategy-card .case-item:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .case-item {
    padding: 20px;
  }
  
  .platform-name {
    font-size: 16px;
  }
  
  .subtitle {
    font-size: 20px;
  }
  
  .strategy-card {
    padding: 25px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .strategy-card {
    height: auto;
  }
}

/* Styles pour le guide pratique TikTok */
.tiktok-guide-container {
  position: relative;
  padding: 20px 0;
}

.steps-container {
  padding-left: 80px;
  position: relative;
  margin-bottom: 40px;
}

.steps-container:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 6px;
  background: linear-gradient(to bottom, #EE1D52, #69C9D0);
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(238, 29, 82, 0.4);
  z-index: 1;
}

.step-item {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 0;
}

.step-item:last-child {
  padding-bottom: 0;
}

.step-number {
  position: absolute;
  left: -80px;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #EE1D52, #69C9D0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 20px rgba(238, 29, 82, 0.5), 0 0 0 8px rgba(40, 40, 40, 0.6);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(238, 29, 82, 0.6), 0 0 0 8px rgba(40, 40, 40, 0.7);
}

.step-content {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 15px;
  padding: 30px;
  margin-left: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #EE1D52;
  position: relative;
}

.step-content:before {
  content: '';
  position: absolute;
  left: -24px;
  top: 30px;
  width: 20px;
  height: 3px;
  background: linear-gradient(to right, #69C9D0, #EE1D52);
  z-index: 0;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.step-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #EE1D52, #69C9D0);
}

.step-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.step-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.step-list li:before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #EE1D52;
  font-size: 16px;
}

.note-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  font-size: 14px;
}

.guide-conclusion {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 15px;
  padding: 25px 30px;
  border-left: 4px solid #69C9D0;
  position: relative;
  margin-top: 40px;
}

.guide-conclusion:before {
  content: '\f0eb';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #EE1D52, #69C9D0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 0 15px rgba(238, 29, 82, 0.4);
}

/* Styles responsifs */
@media only screen and (max-width: 991px) {
  .kpi-metrics-container .col-lg-4,
  .kpi-metrics-container .col-md-6,
  .targeting-options-container .col-lg-6 {
    margin-bottom: 30px;
  }
  
  .ad-platform {
    margin-bottom: 30px;
  }
  
  .step-item {
    padding-bottom: 40px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    left: -70px;
  }
  
  .steps-container:before {
    left: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .steps-container {
    padding-left: 60px;
  }
  
  .steps-container:before {
    left: 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
    left: -50px;
    box-shadow: 0 0 15px rgba(238, 29, 82, 0.4), 0 0 0 5px rgba(40, 40, 40, 0.6);
  }
  
  .step-content {
    padding: 25px;
    margin-left: 10px;
  }
  
  .step-content:before {
    left: -14px;
    width: 10px;
  }
  
  .step-item {
    padding-bottom: 30px;
  }
  
  .step-title {
    font-size: 18px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  
  .step-list li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .guide-conclusion {
    padding: 20px;
  }
  
  .guide-conclusion:before {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .steps-container {
    padding-left: 50px;
  }
  
  .step-number {
    left: -45px;
  }
}

/* Styles pour la section de ciblage d'audience */
.targeting-options-container {
  margin-bottom: 40px;
}

.targeting-options-container .row {
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
  flex-wrap: wrap;
}

.targeting-options-container .col-lg-6 {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
  display: flex;
}

.targeting-option {
  display: flex;
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.targeting-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.targeting-option:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #4285F4, #34A853);
}

.option-icon {
  flex: 0 0 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.2), rgba(52, 168, 83, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.option-icon i {
  font-size: 24px;
  color: #fff;
}

.option-content {
  flex: 1;
  line-height: 1.6;
}

.option-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* Couleurs spécifiques pour chaque icône */
.targeting-option:nth-child(1) .option-icon,
.targeting-option:nth-child(1) .option-icon i {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.2), rgba(52, 168, 83, 0.2));
  color: #4285F4;
}

.targeting-option:nth-child(2) .option-icon,
.targeting-option:nth-child(2) .option-icon i {
  background: linear-gradient(135deg, rgba(234, 67, 53, 0.2), rgba(251, 188, 5, 0.2));
  color: #EA4335;
}

.targeting-option:nth-child(3) .option-icon,
.targeting-option:nth-child(3) .option-icon i {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.2), rgba(251, 188, 5, 0.2));
  color: #34A853;
}

.targeting-option:nth-child(4) .option-icon,
.targeting-option:nth-child(4) .option-icon i {
  background: linear-gradient(135deg, rgba(251, 188, 5, 0.2), rgba(66, 133, 244, 0.2));
  color: #FBBC05;
}

.targeting-option:nth-child(5) .option-icon,
.targeting-option:nth-child(5) .option-icon i {
  background: linear-gradient(135deg, rgba(238, 29, 82, 0.2), rgba(66, 133, 244, 0.2));
  color: #EE1D52;
}

.targeting-option:nth-child(6) .option-icon,
.targeting-option:nth-child(6) .option-icon i {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.2), rgba(238, 29, 82, 0.2));
  color: #34A853;
}

.targeting-option:nth-child(1):before {
  background: linear-gradient(to bottom, #4285F4, #34A853);
}

.targeting-option:nth-child(2):before {
  background: linear-gradient(to bottom, #EA4335, #FBBC05);
}

.targeting-option:nth-child(3):before {
  background: linear-gradient(to bottom, #34A853, #FBBC05);
}

.targeting-option:nth-child(4):before {
  background: linear-gradient(to bottom, #FBBC05, #4285F4);
}

.targeting-option:nth-child(5):before {
  background: linear-gradient(to bottom, #EE1D52, #4285F4);
}

.targeting-option:nth-child(6):before {
  background: linear-gradient(to bottom, #34A853, #EE1D52);
}

.targeting-conclusion {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 20px 25px;
  border-left: 4px solid #4285F4;
}

/* Styles responsifs pour le ciblage d'audience */
@media only screen and (max-width: 991px) {
  .targeting-option {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .targeting-option {
    padding: 25px;
  }
  
  .option-icon {
    flex: 0 0 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .option-icon i {
    font-size: 20px;
  }
  
  .option-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

/* Styles pour la section des formats publicitaires */
.ad-formats-container {
  margin-bottom: 40px;
}

.ad-platform {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ad-platform:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.platform-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 24px;
}

.platform-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* Styles spécifiques pour chaque plateforme */
.ad-platform:nth-child(1) {
  border-top: 4px solid #4267B2;
}

.ad-platform:nth-child(1) .platform-icon {
  background-color: #4267B2;
  color: #fff;
}

.ad-platform:nth-child(2) {
  border-top: 4px solid #DB4437;
}

.ad-platform:nth-child(2) .platform-icon {
  background-color: #DB4437;
  color: #fff;
}

.ad-platform:nth-child(3) {
  border-top: 4px solid #EE1D52;
}

.ad-platform:nth-child(3) .platform-icon {
  background-color: #EE1D52;
  color: #fff;
}

.format-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.format-list li {
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.format-list li:before {
  content: '▶';
  position: absolute;
  left: 0;
  font-size: 10px;
}

.ad-platform:nth-child(1) .format-list li:before {
  color: #4267B2;
}

.ad-platform:nth-child(2) .format-list li:before {
  color: #DB4437;
}

.ad-platform:nth-child(3) .format-list li:before {
  color: #EE1D52;
}

.format-name {
  font-weight: 600;
  color: #fff;
}

.format-desc {
  color: rgba(255, 255, 255, 0.8);
}

.ad-formats-conclusion {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 20px 25px;
  border-left: 4px solid #4267B2;
}

/* Styles responsifs pour les formats publicitaires */
@media only screen and (max-width: 767px) {
  .ad-platform {
    padding: 25px;
  }
  
  .platform-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  
  .platform-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 10px;
  }
  
  .platform-title {
    font-size: 18px;
  }
  
  .format-list li {
    margin-bottom: 15px;
  }
}

/* Styles pour la section des KPIs */
.kpi-metrics-container {
  margin-bottom: 40px;
}

.kpi-metrics-container .row {
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
  flex-wrap: wrap;
}

.kpi-metrics-container .col-lg-4,
.kpi-metrics-container .col-md-6 {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
  display: flex;
}

.kpi-metric {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.kpi-metric:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.kpi-metric:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #4285F4, #34A853);
}

.metric-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.2), rgba(52, 168, 83, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.metric-icon i {
  font-size: 24px;
  color: #fff;
}

.metric-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* Couleurs spécifiques pour chaque KPI */
.kpi-metric:nth-child(1) .metric-icon,
.kpi-metric:nth-child(1) .metric-icon i {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.2), rgba(52, 168, 83, 0.2));
  color: #4285F4;
}

.kpi-metric:nth-child(2) .metric-icon,
.kpi-metric:nth-child(2) .metric-icon i {
  background: linear-gradient(135deg, rgba(234, 67, 53, 0.2), rgba(251, 188, 5, 0.2));
  color: #EA4335;
}

.kpi-metric:nth-child(3) .metric-icon,
.kpi-metric:nth-child(3) .metric-icon i {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.2), rgba(251, 188, 5, 0.2));
  color: #34A853;
}

.kpi-metric:nth-child(4) .metric-icon,
.kpi-metric:nth-child(4) .metric-icon i {
  background: linear-gradient(135deg, rgba(251, 188, 5, 0.2), rgba(66, 133, 244, 0.2));
  color: #FBBC05;
}

.kpi-metric:nth-child(5) .metric-icon,
.kpi-metric:nth-child(5) .metric-icon i {
  background: linear-gradient(135deg, rgba(238, 29, 82, 0.2), rgba(66, 133, 244, 0.2));
  color: #EE1D52;
}

.kpi-metric:nth-child(6) .metric-icon,
.kpi-metric:nth-child(6) .metric-icon i {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.2), rgba(238, 29, 82, 0.2));
  color: #34A853;
}

.kpi-metric:nth-child(7) .metric-icon,
.kpi-metric:nth-child(7) .metric-icon i {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.2), rgba(234, 67, 53, 0.2));
  color: #4285F4;
}

.kpi-metric:nth-child(8) .metric-icon,
.kpi-metric:nth-child(8) .metric-icon i {
  background: linear-gradient(135deg, rgba(251, 188, 5, 0.2), rgba(234, 67, 53, 0.2));
  color: #FBBC05;
}

.kpi-metric:nth-child(9) .metric-icon,
.kpi-metric:nth-child(9) .metric-icon i {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.2), rgba(66, 133, 244, 0.2));
  color: #34A853;
}

.kpi-metric:nth-child(1):before {
  background: linear-gradient(to bottom, #4285F4, #34A853);
}

.kpi-metric:nth-child(2):before {
  background: linear-gradient(to bottom, #EA4335, #FBBC05);
}

.kpi-metric:nth-child(3):before {
  background: linear-gradient(to bottom, #34A853, #FBBC05);
}

.kpi-metric:nth-child(4):before {
  background: linear-gradient(to bottom, #FBBC05, #4285F4);
}

.kpi-metric:nth-child(5):before {
  background: linear-gradient(to bottom, #EE1D52, #4285F4);
}

.kpi-metric:nth-child(6):before {
  background: linear-gradient(to bottom, #34A853, #EE1D52);
}

.kpi-metric:nth-child(7):before {
  background: linear-gradient(to bottom, #4285F4, #EA4335);
}

.kpi-metric:nth-child(8):before {
  background: linear-gradient(to bottom, #FBBC05, #EA4335);
}

.kpi-metric:nth-child(9):before {
  background: linear-gradient(to bottom, #34A853, #4285F4);
}

.kpi-conclusion {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 20px 25px;
  border-left: 4px solid #4285F4;
}

/* Styles responsifs pour les KPIs */
@media only screen and (max-width: 991px) {
  .kpi-metric {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .kpi-metric {
    padding: 25px;
  }
  
  .metric-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .metric-icon i {
    font-size: 20px;
  }
  
  .metric-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

/* Styles pour la section des cartes */
.steps-container {
  padding-left: 60px;
  position: relative;
  margin-bottom: 40px;
}

.step-item {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 0;
}

.step-content {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 30px;
  margin-left: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid #EE1D52;
}

.step-list li {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Styles responsifs */
@media only screen and (max-width: 991px) {
  .kpi-metrics-container .col-lg-4,
  .kpi-metrics-container .col-md-6,
  .targeting-options-container .col-lg-6 {
    margin-bottom: 30px;
  }
  
  .ad-platform {
    margin-bottom: 30px;
  }
  
  .step-item {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .kpi-metrics-container .col-lg-4,
  .kpi-metrics-container .col-md-6,
  .targeting-options-container .col-lg-6 {
    margin-bottom: 25px;
  }
  
  .kpi-metric, 
  .targeting-option, 
  .ad-platform {
    padding: 25px;
    margin-bottom: 25px;
  }
  
  .step-content {
    padding: 25px;
    margin-left: 15px;
  }
  
  .step-item {
    padding-bottom: 25px;
  }
}

/* Styles pour la section "Le Métier de Gestionnaire de Campagnes Publicitaires" */
.career-sections-container {
  margin-bottom: 40px;
}

.career-sections-container .row {
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
  flex-wrap: wrap;
}

.career-sections-container .col-lg-4,
.career-sections-container .col-md-6 {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
  display: flex;
}

.career-section {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.career-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.career-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #4285F4, #34A853);
}

.section-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.2), rgba(52, 168, 83, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.section-icon i {
  font-size: 24px;
  color: #fff;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.career-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.career-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.career-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #4285F4;
  font-size: 14px;
}

.career-section:nth-child(1) .section-icon,
.career-section:nth-child(1) .section-icon i {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.2), rgba(52, 168, 83, 0.2));
  color: #4285F4;
}

.career-section:nth-child(2) .section-icon,
.career-section:nth-child(2) .section-icon i {
  background: linear-gradient(135deg, rgba(234, 67, 53, 0.2), rgba(251, 188, 5, 0.2));
  color: #EA4335;
}

.career-section:nth-child(3) .section-icon,
.career-section:nth-child(3) .section-icon i {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.2), rgba(251, 188, 5, 0.2));
  color: #34A853;
}

.career-section:nth-child(1):before {
  background: linear-gradient(to bottom, #4285F4, #34A853);
}

.career-section:nth-child(2):before {
  background: linear-gradient(to bottom, #EA4335, #FBBC05);
}

.career-section:nth-child(3):before {
  background: linear-gradient(to bottom, #34A853, #FBBC05);
}

.career-conclusion {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 20px 25px;
  border-left: 4px solid #4285F4;
}

/* Styles responsifs pour la section carrière */
@media only screen and (max-width: 991px) {
  .career-sections-container .col-lg-4,
  .career-sections-container .col-md-6 {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .career-sections-container .col-lg-4,
  .career-sections-container .col-md-6 {
    margin-bottom: 25px;
  }
  
  .career-section {
    padding: 25px;
  }
  
  .section-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .section-icon i {
    font-size: 20px;
  }
  
  .section-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .career-list li {
    margin-bottom: 10px;
  }
}

/* Styles pour la section "Nos Services de Gestion de Campagnes Publicitaires" */
.services-steps-container {
  margin-bottom: 40px;
}

.services-steps-container .row {
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
  flex-wrap: wrap;
}

.services-steps-container .col-lg-6,
.services-steps-container .col-md-6 {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
  display: flex;
}

.service-step {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #EE1D52, rgba(238, 29, 82, 0.7));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.service-step:nth-child(1) .step-number {
  background: linear-gradient(135deg, #4285F4, rgba(66, 133, 244, 0.7));
}

.service-step:nth-child(2) .step-number {
  background: linear-gradient(135deg, #34A853, rgba(52, 168, 83, 0.7));
}

.service-step:nth-child(3) .step-number {
  background: linear-gradient(135deg, #FBBC05, rgba(251, 188, 5, 0.7));
}

.service-step:nth-child(4) .step-number {
  background: linear-gradient(135deg, #EA4335, rgba(234, 67, 53, 0.7));
}

.services-conclusion {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 20px 25px;
  border-left: 4px solid #EE1D52;
}

.services-conclusion strong {
  color: #EE1D52;
  font-weight: 600;
}

/* Styles responsifs pour la section des services */
@media only screen and (max-width: 991px) {
  .services-steps-container .col-lg-6,
  .services-steps-container .col-md-6 {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .services-steps-container .col-lg-6,
  .services-steps-container .col-md-6 {
    margin-bottom: 25px;
  }
  
  .service-step {
    padding: 25px;
    flex-direction: column;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .step-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

/* Styles pour la section des services de gestion de campagnes */
.service-process-wrapper {
  position: relative;
  padding: 20px 0;
  margin-bottom: 30px;
}

.service-process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 4px;
  background: linear-gradient(to bottom, #4285F4, #34A853, #FBBC05, #EA4335, #EE1D52);
  z-index: 1;
}

.service-process-item {
  position: relative;
  display: flex;
  margin-bottom: 60px;
  z-index: 2;
}

.service-process-item:last-child {
  margin-bottom: 0;
}

.process-icon-wrapper {
  position: relative;
  margin-right: 30px;
  flex-shrink: 0;
}

.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(40, 40, 40, 0.6), 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 3;
}

.process-icon i {
  font-size: 32px;
  color: #fff;
}

.service-process-item:nth-child(1) .process-icon {
  background: linear-gradient(135deg, #4285F4, #34A853);
}

.service-process-item:nth-child(2) .process-icon {
  background: linear-gradient(135deg, #34A853, #FBBC05);
}

.service-process-item:nth-child(3) .process-icon {
  background: linear-gradient(135deg, #FBBC05, #EA4335);
}

.service-process-item:nth-child(4) .process-icon {
  background: linear-gradient(135deg, #EA4335, #EE1D52);
}

.process-content {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.process-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.process-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.process-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #4285F4, #34A853);
}

.service-process-item:nth-child(1) .process-title:after {
  background: linear-gradient(to right, #4285F4, #34A853);
}

.service-process-item:nth-child(2) .process-title:after {
  background: linear-gradient(to right, #34A853, #FBBC05);
}

.service-process-item:nth-child(3) .process-title:after {
  background: linear-gradient(to right, #FBBC05, #EA4335);
}

.service-process-item:nth-child(4) .process-title:after {
  background: linear-gradient(to right, #EA4335, #EE1D52);
}

.process-description {
  margin-bottom: 20px;
  line-height: 1.6;
}

.process-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.process-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.process-features li:before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
}

.service-process-item:nth-child(1) .process-features li:before {
  color: #4285F4;
}

.service-process-item:nth-child(2) .process-features li:before {
  color: #34A853;
}

.service-process-item:nth-child(3) .process-features li:before {
  color: #FBBC05;
}

.service-process-item:nth-child(4) .process-features li:before {
  color: #EA4335;
}

.services-cta {
  background: linear-gradient(135deg, rgba(238, 29, 82, 0.9), rgba(66, 133, 244, 0.9));
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.services-cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/pattern.png');
  opacity: 0.1;
  z-index: 1;
}

.cta-content {
  position: relative;
  padding: 40px;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.6;
}

.btn-contact {
  display: inline-block;
  background-color: #fff;
  color: #EE1D52;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-contact:hover {
  background-color: #f8f8f8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #EE1D52;
}

/* Styles responsifs pour la section des services */
@media only screen and (max-width: 991px) {
  .service-process-line {
    left: 40px;
  }
  
  .process-icon {
    width: 70px;
    height: 70px;
  }
  
  .process-icon i {
    font-size: 28px;
  }
  
  .process-content {
    padding: 25px;
  }
  
  .cta-content {
    padding: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .service-process-wrapper {
    padding-left: 10px;
  }
  
  .service-process-line {
    left: 30px;
  }
  
  .service-process-item {
    margin-bottom: 40px;
  }
  
  .process-icon-wrapper {
    margin-right: 20px;
  }
  
  .process-icon {
    width: 60px;
    height: 60px;
    box-shadow: 0 0 0 5px rgba(40, 40, 40, 0.6), 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .process-icon i {
    font-size: 24px;
  }
  
  .process-content {
    padding: 20px;
  }
  
  .process-title {
    font-size: 18px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  
  .process-description {
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .process-features li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .cta-content {
    padding: 25px;
  }
  
  .cta-title {
    font-size: 20px;
  }
  
  .cta-description {
    font-size: 14px;
  }
  
  .btn-contact {
    padding: 10px 25px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .service-process-item {
    flex-direction: column;
  }
  
  .process-icon-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
    align-self: flex-start;
  }
  
  .service-process-line {
    left: 30px;
    top: 80px;
  }
}

/* Styles pour la section Stratégies de Campagnes : Exemples de Réussites et d'Échecs */
.strategies-container {
  margin-bottom: 30px;
}

.strategy-card {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.strategy-card .card-header {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  position: relative;
}

.success-card .card-header {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.9), rgba(66, 133, 244, 0.9));
}

.failure-card .card-header {
  background: linear-gradient(135deg, rgba(234, 67, 53, 0.9), rgba(251, 188, 5, 0.9));
}

.card-header .header-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.card-header .header-icon i {
  font-size: 24px;
  color: #fff;
}

.card-header .subtitle {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.success-cases, .failure-cases {
  padding: 20px;
}

.case-item {
  display: flex;
  background-color: rgba(30, 30, 30, 0.4);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.case-item:last-child {
  margin-bottom: 0;
}

.case-item:hover {
  transform: translateY(-3px);
}

.platform-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.platform-badge i {
  font-size: 20px;
  color: #fff;
}

.platform-badge.facebook {
  background: linear-gradient(135deg, #3b5998, #8b9dc3);
}

.platform-badge.google {
  background: linear-gradient(135deg, #4285F4, #34A853);
}

.platform-badge.tiktok {
  background: linear-gradient(135deg, #EE1D52, #69C9D0);
}

.case-content {
  flex: 1;
}

.case-content .platform-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.case-content .disc {
  margin-bottom: 15px;
  line-height: 1.6;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.metric {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.metric i {
  margin-right: 6px;
  font-size: 12px;
}

.success-card .metric i {
  color: #34A853;
}

.failure-card .metric i {
  color: #EA4335;
}

.strategies-conclusion {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 15px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.conclusion-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4285F4, #EE1D52);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.conclusion-icon i {
  font-size: 28px;
  color: #fff;
}

.conclusion-content {
  flex: 1;
}

.conclusion-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

/* Styles responsifs */
@media only screen and (max-width: 991px) {
  .strategy-card {
    margin-bottom: 30px;
  }
  
  .col-lg-6:last-child .strategy-card {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .card-header {
    padding: 20px 25px;
  }
  
  .card-header .header-icon {
    width: 40px;
    height: 40px;
  }
  
  .card-header .header-icon i {
    font-size: 20px;
  }
  
  .card-header .subtitle {
    font-size: 18px;
  }
  
  .case-item {
    padding: 15px;
    flex-direction: column;
  }
  
  .platform-badge {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .strategies-conclusion {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .conclusion-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Styles pour la section FAQ */
.service-details-accordion-area {
  margin-bottom: 40px;
}

.service-details-accordion-area .title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.service-details-accordion-area .title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #EE1D52, #69C9D0);
}

.accordion-item {
  background-color: rgba(40, 40, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.accordion-button {
  background-color: rgba(30, 30, 30, 0.7);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 25px;
  border: none;
  position: relative;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(238, 29, 82, 0.1), rgba(105, 201, 208, 0.1));
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.2);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23EE1D52' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 20px 25px;
  background-color: rgba(40, 40, 40, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-body p {
  margin-bottom: 0;
  line-height: 1.7;
}

/* Styles responsifs pour la FAQ */
@media only screen and (max-width: 991px) {
  .service-details-accordion-area .title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .accordion-button {
    font-size: 15px;
    padding: 18px 20px;
  }
  
  .accordion-body {
    padding: 18px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .service-details-accordion-area {
    margin-top: 30px;
  }
  
  .service-details-accordion-area .title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .accordion-button {
    font-size: 14px;
    padding: 15px 18px;
  }
  
  .accordion-body {
    padding: 15px 18px;
  }
  
  .accordion-item {
    margin-bottom: 10px;
  }
}

/* Styles pour le sommaire */
.rts-single-wized.Categories .wized-header .title {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.rts-single-wized.Categories .wized-header .title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #EE1D52, #69C9D0);
}

.rts-single-wized.Categories .wized-body {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rts-single-wized.Categories .single-categories {
  margin-bottom: 10px;
  padding-left: 0;
  list-style: none;
}

.rts-single-wized.Categories .single-categories li {
  position: relative;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  transition: all 0.3s ease;
}

.rts-single-wized.Categories .single-categories li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.rts-single-wized.Categories .single-categories li a {
  color: #fff;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.rts-single-wized.Categories .single-categories li a:hover {
  color: #EE1D52;
  transform: translateX(5px);
}

.rts-single-wized.Categories .single-categories li a i {
  color: #EE1D52;
  font-size: 14px;
  transition: all 0.3s ease;
}

.rts-single-wized.Categories .single-categories li a:hover i {
  transform: translateX(5px);
}

/* Styles responsifs pour le sommaire */
@media only screen and (max-width: 991px) {
  .rts-single-wized.Categories .wized-header .title {
    font-size: 20px;
  }
  
  .rts-single-wized.Categories .single-categories li a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .rts-single-wized.Categories .wized-body {
    padding: 15px;
  }
  
  .rts-single-wized.Categories .single-categories li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
