.banner-offres-section {
  display: flex;
  padding: 40px 0;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  background: #DAD4F6;
  border-radius: 50px;
}

.bloc-title-process {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.bloc-title-process h3 {
  color: var(--0F056B, #0f056b);
  font-size: 35px;
  font-weight: 600;
}

.bloc-content-process p {
  color: var(--0F056B, #0f056b);
  text-align: center;
  font-size: 18px;
}

.banner-offres > .container.active-scroll {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.banner__container.active-scroll {
  width: 100% !important;
  border-radius: 0 !important;
  transition: width 0.5s ease, border-radius 0.5s ease;
}

.banner-offres-section.active-scroll {
  border-radius: 0 !important;
}

.offres-comparatif {
  background: #fff;
  border-radius: 40px;
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.offres-grid {
  display: grid;
  grid-template-columns: 1fr 150px 150px;
  align-items: center;
  gap: 0px 15px;
}

.offres-grid .header {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

.offres-grid .header.delegation {
  color: #333;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.offres-grid .header.gestion {
  color: #333;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.last-col {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.critere {
  font-size: 15px;
  color: #333;
}

.col {
  text-align: center;
}

.offres-grid > *:nth-child(3n + 2) {
  background: rgba(31, 114, 235, 0.1);
}

.offres-grid > *:nth-child(3n + 3) {
  background: rgba(100, 69, 255, 0.1);
}

@media (max-width: 768px) {
  .bloc-title-process h3 {
    margin-left: 25px;
  }
  .offres-comparatif {
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .offres-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px 10px;
  }
  .offres-grid .header {
    display: none;
  }
  .critere {
    grid-column: 1 / -1;
    padding: 8px 4px 2px;
  }
  .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 6px;
    border-radius: 14px;
    background: none;
    position: relative;
  }
  .col.delegation::before {
    content: "Délégation";
    font-size: 12px;
    color: #7b7b7b;
    margin-bottom: 6px;
  }
  .col.gestion::before {
    content: "Gestion";
    font-size: 12px;
    color: #7b7b7b;
    margin-bottom: 6px;
  }
  .offres-grid > *:nth-child(3n + 2),
  .offres-grid > *:nth-child(3n + 3) {
    background: none;
  }
  .col.delegation {
    background: rgba(31, 114, 235, 0.1);
  }
  .col.gestion {
    background: rgba(100, 69, 255, 0.1);
  }
}
