.elementor-28854 .elementor-element.elementor-element-1ce9f01{--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 *//* =============================================
   DÉCLARATION DE CESSION — STYLES COMPLETS
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #f4f7fb;
  color: #1a1a1a;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1a3c6e 0%, #2d6bb5 100%);
  color: #fff;
  padding: 64px 40px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e4edf8;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -40px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 56px;
}

.hero-left {
  flex: 1;
}

/* ── TAGS ── */
.hero-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-date {
  background: #e3f2fd;
  color: #1a3c6e;
  border: 1px solid #bbdefb;
}

.tag-subject {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffe0b2;
}

.tag-author {
  background: #f3e5f5;
  color: #6a1b9a;
  border: 1px solid #e1bee7;
}

/* ── TITRE ── */
.hero h1 {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}

.hero-intro {
  font-size: 1.02rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.75;
  color: #fff;
}

/* ── CTA HERO ── */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5a623;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
  text-decoration: none;
}

.hero-cta svg {
  width: 16px;
  height: 16px;
}

/* ── IMAGE ── */
.hero-right {
  flex-shrink: 0;
  width: 460px;
}

.hero-right img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  display: block;
}

/* ── CONTEXT LINKS ── */
.context-links {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.context-links a {
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.context-links a:hover {
  color: #fff;
}

/* ─────────────────────────────────────────────
   PAGE WRAP
───────────────────────────────────────────── */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ─────────────────────────────────────────────
   SOMMAIRE
───────────────────────────────────────────── */
.sommaire {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e8eef6;
}

.sommaire-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a3c6e;
  margin-bottom: 16px;
}

.sommaire-title svg {
  width: 18px;
  height: 18px;
  color: #2d6bb5;
  flex-shrink: 0;
}

.sommaire ol {
  list-style: none;
  counter-reset: sommaire-counter;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 40px;
}

.sommaire ol li {
  counter-increment: sommaire-counter;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  break-inside: avoid;
}

.sommaire ol li::before {
  content: counter(sommaire-counter, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 700;
  color: #2d6bb5;
  flex-shrink: 0;
  min-width: 24px;
}

.sommaire ol li a {
  color: #2d4a7a;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 0.2s;
}

.sommaire ol li a:hover,
.sommaire ol li a.active {
  color: #2d6bb5;
  text-decoration: underline;
}

/* ─────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────── */
.section {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e8eef6;
}

.section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a3c6e;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e8eef6;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a3c6e;
  margin: 24px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section h3 svg {
  color: #2d6bb5;
  flex-shrink: 0;
}

.section p {
  color: #3a3a3a;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.section p:last-child {
  margin-bottom: 0;
}

.section ul,
.section ol {
  padding-left: 20px;
  margin: 12px 0 16px;
}

.section ul li,
.section ol li {
  color: #3a3a3a;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.section a {
  color: #2d6bb5;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section a:hover {
  color: #1a3c6e;
}

/* ─────────────────────────────────────────────
   CARDS GRID
───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.card {
  background: #f8fafd;
  border: 1px solid #e0eaf6;
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(45,107,181,0.12);
}

.card-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1a3c6e, #2d6bb5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
  flex-shrink: 0;
}

.card-number svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3c6e;
  margin: 0 0 8px;
  border: none;
  padding: 0;
}

.card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────────
   CTA BOX
───────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, #1a3c6e 0%, #2d6bb5 100%);
  border-radius: 20px;
  padding: 44px 48px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26,60,110,0.2);
}

.cta-box h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin: 20px 0 24px;
}

.cta-box p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 12px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5a623;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
  text-decoration: none;
  color: #1a1a1a;
}

/* ─────────────────────────────────────────────
   SECTION RESSOURCES
───────────────────────────────────────────── */
.section-resources {
  background: #f8fafd;
}

.section-resources h2 {
  color: #1a1a1a;
}

.section-resources ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.section-resources li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
}

.section-resources li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2d6bb5;
  font-weight: 700;
}

.section-resources a {
  color: #2d6bb5;
  text-decoration: none;
  font-weight: 500;
}

.section-resources a:hover {
  text-decoration: underline;
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.section-faq {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e8eef6;
}

.section-faq h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a3c6e;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e8eef6;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e0eaf6;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(45,107,181,0.08);
}

.faq-item.open {
  border-color: #2d6bb5;
  box-shadow: 0 2px 16px rgba(45,107,181,0.12);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a3c6e;
  cursor: pointer;
  background: #f8fafd;
  gap: 16px;
  user-select: none;
  transition: background 0.2s;
}

.faq-q:hover {
  background: #eef4fd;
}

.faq-item.open .faq-q {
  background: #eef4fd;
  color: #2d6bb5;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #2d6bb5;
  transition: transform 0.25s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  padding: 0 22px;
  background: #fff;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 16px 22px 20px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLETTE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    padding: 48px 30px 0;
  }

  .hero-inner {
    flex-direction: column;
    gap: 36px;
    text-align: center;
    padding-bottom: 44px;
  }

  .hero-right {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .context-links {
    text-align: center;
  }

  .page-wrap {
    padding: 36px 24px 60px;
  }

  .sommaire ol {
    columns: 1;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 28px 24px;
  }

  .section-faq {
    padding: 28px 24px;
  }

  .cta-box {
    padding: 36px 28px;
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE
───────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero {
    padding: 40px 20px 0;
  }

  .hero-inner {
    gap: 24px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: 1.45rem;
  }

  .hero-intro {
    font-size: 0.95rem;
  }

  .tag {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .hero-tags {
    gap: 8px;
    justify-content: center;
  }

  .context-links {
    font-size: 0.82rem;
  }

  .page-wrap {
    padding: 24px 16px 50px;
    gap: 20px;
  }

  .sommaire {
    padding: 20px 18px;
  }

  .sommaire-title {
    font-size: 0.88rem;
  }

  .sommaire ol li a {
    font-size: 0.85rem;
  }

  .section {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .section h2 {
    font-size: 1.2rem;
  }

  .section h3 {
    font-size: 0.97rem;
  }

  .section-faq {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .section-faq h2 {
    font-size: 1.2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card {
    padding: 18px;
  }

  .cta-box {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .cta-box h2 {
    font-size: 1.25rem;
  }

  .cta-box h3 {
    font-size: 0.97rem;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 0.92rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .faq-q {
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .faq-item.open .faq-a {
    padding: 14px 16px 18px;
  }

  .faq-arrow {
    width: 18px;
    height: 18px;
  }
}
/* STEPS CARDS */
.steps-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.step-card {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #0066cc;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #0066cc;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.step-card a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.step-card a:hover {
  text-decoration: underline;
}

/* CONSEIL BOX */
.conseil-box {
  background: #e6f2ff;
  border-left: 4px solid #0066cc;
  padding: 16px 20px;
  border-radius: 4px;
  margin-top: 24px;
}

.conseil-box p {
  margin: 0;
  font-size: 14px;
  color: #003d99;
}

/* VERSION MOBILE */
@media (max-width: 768px) {
  .steps-cards {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */