.elementor-582279 .elementor-element.elementor-element-542bd0c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-e17f2d7 */:root {
  --bd-blue: #1650F5;       /* bleu de marque — à ajuster si besoin */
  --bd-blue-ink: #0F1E3D;   /* bleu très foncé, pour les titres */
  --bd-text: #3C4A61;       /* texte courant */
  --bd-tint: #EDF1FA;       /* fond bleu clair de la charte */
  --bd-line: #E2E8F5;       /* traits fins */
  --bd-surface: #FFFFFF;    /* cartes blanches */
  --bd-shadow: 0 4px 16px rgba(15, 30, 61, 0.08);
}

/* ---------- Tableaux de salaires ---------- */

.bd-salary-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: var(--bd-surface);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--bd-shadow);
  font-size: 0.95rem;
}

.bd-salary-table thead th {
  background: var(--bd-blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 14px 16px;
}

.bd-salary-table thead th:not(:first-child) {
  text-align: center;
}

.bd-salary-table tbody td {
  padding: 13px 16px;
  color: var(--bd-text);
  border-bottom: 1px solid var(--bd-line);
  font-variant-numeric: tabular-nums;
}

.bd-salary-table tbody td:not(:first-child) {
  text-align: center;
  font-weight: 600;
  color: var(--bd-blue-ink);
}

.bd-salary-table tbody td:first-child {
  font-weight: 500;
}

.bd-salary-table tbody tr:last-child td {
  border-bottom: none;
}

.bd-salary-table tbody tr:nth-child(even) {
  background: var(--bd-tint);
}

.bd-salary-table tbody tr:hover {
  background: #E4EAFB;
}

@media (max-width: 600px) {
  .bd-salary-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .bd-salary-table thead th,
  .bd-salary-table tbody td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

/* ---------- FAQ ---------- */
/* bd-faq-list est en flux normal (pas flex) : un display:flex ici cassait
   le retour à la ligne du texte des réponses et le faisait déborder,
   coupé net par l'overflow:hidden de la carte. */

.bd-faq {
  background: var(--bd-tint);
  border-radius: 20px;
  padding: 40px clamp(20px, 5vw, 40px);
  margin: 40px 0;
}

.bd-faq-eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bd-blue);
}

.bd-faq-title {
  margin: 0 0 24px;
  color: var(--bd-blue-ink);
  font-size: 1.5rem;
  line-height: 1.3;
}

.bd-faq-item {
  background: var(--bd-surface);
  border-radius: 12px;
  box-shadow: var(--bd-shadow);
  margin-bottom: 10px;
  min-width: 0;
}

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

.bd-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--bd-blue-ink);
  transition: color 0.15s ease;
}

.bd-faq-item summary::-webkit-details-marker {
  display: none;
}

.bd-faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--bd-blue);
  border-bottom: 2px solid var(--bd-blue);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}

.bd-faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.bd-faq-item summary:hover {
  color: var(--bd-blue);
}

.bd-faq-answer {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--bd-text);
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
}

.bd-faq-answer a {
  color: var(--bd-blue);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .bd-faq-item summary::after {
    transition: none;
  }
}/* End custom CSS */