
    :root {
      --brand-primary: #602596;
      --brand-secondary: #0093b4;
      --brand-accent: #fe5656;
      --brand-dark: #4e006f;
      --brand-light: #f8fafc;
      --brand-cream: #fefcf9;
      --brand-primary-90: rgba(96, 37, 150, 0.9);
      --brand-secondary-90: rgba(0, 147, 180, 0.9);
      --brand-accent-90: rgba(254, 86, 86, 0.9);
      /* Keep existing for compatibility */
      --brand-teal: #20B2AA;
      --brand-red: #fe5656;
      --brand-purple: #602596;
      --brand-teal-90: rgba(96, 37, 150, 0.9);
      --brand-purple-90: rgba(96, 37, 150, 0.9);
      --brand-red-90: rgba(254, 86, 86, 0.9);
    }

    body {
      font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
      color: #1a1a1a;
      background: #ffffff;
      scroll-behavior: smooth;
      line-height: 1.7;
    }

    h1, h2, h3, h4, h5, h6 { 
      font-family: "Barlow", sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.3;
    }
    .text-brand { color: var(--brand-primary) !important; }
    .text-red { color: var(--brand-secondary) !important; }
    .text-purple { color: var(--brand-primary) !important; }
    .bg-brand { background: var(--brand-primary) !important; }
    .bg-cream { background: var(--brand-cream) !important; }
    .bg-light-brand { background: var(--brand-light) !important; }
    
    /* Couleurs spécifiques pour les titres */
    .text-title-red { color: var(--brand-red) !important; }
    .text-title-teal { color: var(--brand-teal) !important; }

    .btn-brand {
      background: var(--brand-primary);
      color: #fff;
      border: none;
      padding: 0.875rem 2rem;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25);
      transition: all 0.3s ease;
      border-radius: 4px;
    }

    .btn-brand:hover {
      background: var(--brand-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(30, 58, 138, 0.35);
    }

    .btn-outline-gold {
      color: var(--brand-secondary);
      border: 2px solid var(--brand-secondary);
      background: transparent;
      padding: 0.875rem 2rem;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      border-radius: 4px;
    }

    .btn-outline-gold:hover {
      background: var(--brand-secondary);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    }

    .brand-underline { 
      border-bottom: 4px solid var(--brand-secondary); 
      display: inline-block; 
      font-weight: 800;
      padding-bottom: 0.2rem;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      font-size: 0.75rem;
      color: var(--brand-primary);
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(30, 58, 138, 0.2);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Hero - Senatory style */
    .hero {
      position: relative;
      overflow: hidden;
      background: #f8fafc;
      color: var(--brand-dark);
      padding: 6rem 0 8rem;
      min-height: 90vh;
      display: flex;
      align-items: flex-start;
      padding-top: 8rem;
    }

    .hero::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--brand-secondary);
      z-index: 1;
    }

    .hero::after {
      content: "SCOUTISME";
      position: absolute;
      bottom: 2rem;
      left: 0;
      right: 0;
      font-size: clamp(8rem, 20vw, 15rem);
      font-weight: 900;
      color: rgba(220, 38, 38, 0.05);
      text-align: center;
      font-family: "Barlow", sans-serif;
      letter-spacing: 0.1em;
      z-index: 0;
      pointer-events: none;
    }

    /* Scout branding patterns */
    .scout-pattern {
      position: absolute;
      opacity: 0.03;
      pointer-events: none;
      z-index: 1;
    }

    .scout-fleur-de-lys {
      position: absolute;
      font-size: 20rem;
      color: var(--brand-primary);
      opacity: 0.04;
      z-index: 1;
      pointer-events: none;
    }

    .scout-fleur-de-lys.top-left {
      top: 10%;
      left: 5%;
      transform: rotate(-15deg);
    }

    .scout-fleur-de-lys.top-right {
      top: 10%;
      right: 5%;
      transform: rotate(15deg);
    }

    .scout-fleur-de-lys.bottom-left {
      bottom: 10%;
      left: 5%;
      transform: rotate(15deg);
    }

    .scout-fleur-de-lys.bottom-right {
      bottom: 10%;
      right: 5%;
      transform: rotate(-15deg);
    }

    /* Scout knot pattern */
    .scout-knot-pattern {
      position: absolute;
      width: 200px;
      height: 200px;
      opacity: 0.05;
      background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, var(--brand-secondary) 10px, var(--brand-secondary) 11px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, var(--brand-primary) 10px, var(--brand-primary) 11px);
      z-index: 1;
      pointer-events: none;
    }

    /* Section scout patterns */
    section {
      position: relative;
      overflow: hidden;
    }

    section::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 150px;
      height: 150px;
      background: radial-gradient(circle, var(--brand-secondary) 2px, transparent 2px);
      background-size: 20px 20px;
      opacity: 0.03;
      z-index: 0;
      pointer-events: none;
    }

    section:nth-child(even)::after {
      content: "";
      position: absolute;
      bottom: -50px;
      left: -50px;
      width: 150px;
      height: 150px;
      background: radial-gradient(circle, var(--brand-primary) 2px, transparent 2px);
      background-size: 20px 20px;
      opacity: 0.03;
      z-index: 0;
      pointer-events: none;
    }

    /* Scout badge decorative elements */
    .scout-badge-decoration {
      position: absolute;
      width: 80px;
      height: 80px;
      border: 3px solid var(--brand-secondary);
      border-radius: 50%;
      opacity: 0.08;
      z-index: 0;
      pointer-events: none;
    }

    .scout-badge-decoration::before {
      content: "⚜";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 2rem;
      color: var(--brand-primary);
      opacity: 0.3;
    }

    /* Card scout pattern overlay */
    .card::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, transparent 40%, var(--brand-secondary) 40%, var(--brand-secondary) 45%, transparent 45%),
                  linear-gradient(45deg, transparent 40%, var(--brand-primary) 40%, var(--brand-primary) 45%, transparent 45%);
      opacity: 0.05;
      border-radius: 0 0.5rem 0 0;
      pointer-events: none;
      z-index: 0;
    }

    .card {
      position: relative;
    }

    /* Section title scout decoration - optional, can be removed if too much */
    /* .section-title::before {
      content: "⚜";
      display: inline-block;
      margin-right: 0.5rem;
      font-size: 1.2em;
      color: var(--brand-secondary);
      opacity: 0.3;
      vertical-align: middle;
    } */

    /* Portrait section scout motifs */
    .portrait-wrapper::before {
      content: "";
      position: absolute;
      top: -30px;
      right: -30px;
      width: 100px;
      height: 100px;
      background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        var(--brand-secondary) 10px,
        var(--brand-secondary) 11px
      );
      opacity: 0.05;
      z-index: 0;
      pointer-events: none;
    }

    .portrait-wrapper::after {
      content: "";
      position: absolute;
      bottom: -30px;
      left: -30px;
      width: 100px;
      height: 100px;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        var(--brand-primary) 10px,
        var(--brand-primary) 11px
      );
      opacity: 0.05;
      z-index: 0;
      pointer-events: none;
    }

    .hero-content { 
      position: relative; 
      z-index: 3;
      margin-top: 45vh;
      padding-bottom: 2rem;
    }

    .hero-background-image {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50%;
      max-width: 600px;
      height: auto;
      z-index: 1;
      opacity: 0.4;
      object-fit: contain;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.65) 0%, 
        rgba(248, 250, 252, 0.50) 30%,
        rgba(248, 250, 252, 0.40) 50%,
        rgba(248, 250, 252, 0.50) 70%,
        rgba(248, 250, 252, 0.65) 100%);
      z-index: 2;
      pointer-events: none;
    }

    .hero-eyebrow {
      display: block;
      color: var(--brand-primary);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .hero h1 { 
      font-weight: 900; 
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: var(--brand-accent);
      text-align: center;
    }
    .hero .slogan { 
      font-size: 1.1rem; 
      max-width: 700px;
      font-weight: 400;
      color: #475569;
      line-height: 1.7;
      text-align: center;
      margin: 0 auto 2.5rem;
    }
    .hero-ctas {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .hero-cta-primary {
      background: var(--brand-secondary);
      color: #fff;
      border: 2px solid var(--brand-secondary);
      padding: 1rem 2.5rem;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 4px;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-cta-primary:hover {
      background: #b91c1c;
      border-color: #b91c1c;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    }

    .hero-cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--brand-dark);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.3s ease;
    }

    .hero-cta-secondary:hover {
      color: var(--brand-secondary);
    }

    .hero-play-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid var(--brand-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-secondary);
      font-size: 1.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .hero-play-btn:hover {
      background: var(--brand-secondary);
      color: #fff;
      transform: scale(1.1);
    }

    /* Cards - Senatory style */
    .card {
      border: 1px solid #e2e8f0;
      border-radius: 0;
      box-shadow: none;
      transition: all 0.3s ease;
      background: #fff;
    }
    
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      border-color: var(--brand-primary);
    }

    .card h3 { 
      font-weight: 700; 
      font-family: "Barlow", sans-serif;
      color: var(--brand-dark);
    }

    .card-highlight {
      border: 2px solid var(--brand-primary);
      background: #fff;
      box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
    }

    /* Section heading - Senatory style */
    .section-title { 
      font-weight: 800; 
      font-size: clamp(2rem, 3vw + 1rem, 3rem);
      color: var(--brand-primary);
      margin-bottom: 1rem;
      font-family: "Barlow", sans-serif;
    }
    .section-eyebrow { 
      font-size: 0.75rem; 
      text-transform: uppercase; 
      letter-spacing: 2px; 
      color: var(--brand-secondary); 
      display: block; 
      margin-bottom: 0.75rem;
      font-weight: 700;
      font-family: "Barlow", sans-serif;
    }
    .section-subtitle { 
      max-width: 700px; 
      color: #64748b;
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .divider {
      width: 80px;
      height: 4px;
      background: var(--brand-secondary);
      margin: 2rem 0;
      border-radius: 2px;
    }

    /* Portrait - Senatory style (new model) */
    .portrait-wrapper {
      position: relative;
      display: flex;
      align-items: stretch;
      min-height: 600px;
      padding: 10% 10% 10% 10%;
    }

    .portrait-photo-section {
      flex: 0 0 35%;
      position: relative;
      background: linear-gradient(135deg, var(--brand-light) 0%, #fff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 0;
      transition: all 0.4s ease;
      border: 2px solid transparent;
    }

    .portrait-photo-section:hover {
      border-color: var(--brand-secondary);
      box-shadow: 0 8px 32px rgba(30, 58, 138, 0.15);
      transform: translateY(-4px);
    }

    .portrait-photo-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.1) contrast(1.05);
      transition: transform 0.5s ease, filter 0.5s ease;
    }

    .portrait-photo-section:hover img {
      transform: scale(1.05);
      filter: saturate(1.2) contrast(1.1);
    }

    .portrait-vertical-bar {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 100px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 1.5rem 0.75rem;
      z-index: 2;
      box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
      border-right: 2px dashed var(--brand-secondary);
      transition: all 0.4s ease;
    }

    .portrait-photo-section:hover .portrait-vertical-bar {
      border-right-color: var(--brand-primary);
      box-shadow: 4px 0 24px rgba(30, 58, 138, 0.2);
      width: 110px;
    }

    .portrait-vertical-icon {
      font-size: 2.5rem;
      color: var(--brand-secondary);
      margin-bottom: 1.5rem;
      opacity: 0.8;
      transition: all 0.4s ease;
    }

    .portrait-photo-section:hover .portrait-vertical-icon {
      transform: scale(1.1) rotate(5deg);
      opacity: 1;
      color: var(--brand-primary);
    }

    .portrait-vertical-text {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--brand-dark);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .portrait-vertical-line {
      width: 60%;
      height: 2px;
      background: var(--brand-secondary);
      margin-top: auto;
      margin-bottom: 2rem;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .portrait-vertical-line::after {
      content: "";
      position: absolute;
      left: -100%;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
      transition: left 0.6s ease;
    }

    .portrait-photo-section:hover .portrait-vertical-line::after {
      left: 100%;
    }

    .portrait-photo-section:hover .portrait-vertical-line {
      width: 80%;
      background: var(--brand-primary);
    }

    .portrait-content-section {
      flex: 0 0 65%;
      padding: 4rem 3rem;
      background: linear-gradient(135deg, #fff 0%, var(--brand-light) 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      border-left: 4px solid transparent;
      transition: all 0.4s ease;
    }

    .portrait-content-section::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--brand-secondary) 0%, var(--brand-primary) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .portrait-wrapper:hover .portrait-content-section::before {
      opacity: 1;
    }

    .portrait-eyebrow {
      font-size: 0.85rem;
      color: var(--brand-dark);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .portrait-eyebrow i {
      color: var(--brand-secondary);
      font-size: 0.7rem;
      animation: twinkle 2s ease-in-out infinite;
    }

    .portrait-eyebrow i:nth-child(2) {
      animation-delay: 0s;
    }

    .portrait-eyebrow i:nth-child(3) {
      animation-delay: 0.3s;
    }

    .portrait-eyebrow i:nth-child(4) {
      animation-delay: 0.6s;
    }

    @keyframes twinkle {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.2); }
    }

    .portrait-main-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      font-family: "Barlow", sans-serif;
      transition: all 0.3s ease;
    }

    .portrait-wrapper:hover .portrait-main-title {
      transform: translateX(4px);
    }

    .portrait-description {
      font-size: 1rem;
      color: #64748b;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .portrait-features {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .portrait-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
      border-radius: 0;
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(30, 58, 138, 0.1);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .portrait-feature-item:hover {
      background: rgba(255, 255, 255, 0.95);
      border-color: var(--brand-secondary);
      transform: translateX(8px);
      box-shadow: 0 4px 16px rgba(220, 38, 38, 0.15);
    }

    .portrait-feature-icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
      background: linear-gradient(135deg, var(--brand-secondary) 0%, #b91c1c 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.5rem;
      border-radius: 0;
      box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
      transition: all 0.3s ease;
    }

    .portrait-feature-item:hover .portrait-feature-icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
      background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    }

    .portrait-feature-icon-image {
      width: 30px;
      height: 30px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      transition: all 0.3s ease;
    }

    .portrait-feature-item:hover .portrait-feature-icon-image {
      transform: scale(1.1);
    }

    .portrait-feature-icon {
      overflow: hidden;
    }

    .portrait-feature-content h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--brand-dark);
      margin: 0 0 0.25rem 0;
      font-family: "Barlow", sans-serif;
    }

    .portrait-feature-content p {
      font-size: 0.9rem;
      color: #64748b;
      line-height: 1.6;
      margin: 0;
    }

    .portrait-cta {
      color: var(--brand-secondary);
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.75rem 1.5rem;
      border: 2px solid var(--brand-secondary);
      border-radius: 0;
      width: fit-content;
      background: rgba(255, 255, 255, 0.8);
    }

    .portrait-cta:hover {
      color: #fff;
      background: var(--brand-secondary);
      transform: translateX(8px);
      box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
    }

    .portrait-cta i {
      transition: transform 0.3s ease;
    }

    .portrait-cta:hover i {
      transform: translateX(4px);
    }

    /* Portrait statistics blocks - Flexible grid model */
    .portrait-stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 0;
      margin: 3rem 0 2rem;
      background: #fff;
      border-radius: 0;
      position: relative;
      border: 1px solid #e2e8f0;
    }

    .portrait-stat-block {
      padding: 2rem 1.5rem;
      text-align: center;
      position: relative;
    }

    .portrait-stat-block:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 20%;
      bottom: 20%;
      width: 1px;
      background: repeating-linear-gradient(
        to bottom,
        var(--brand-dark) 0px,
        var(--brand-dark) 8px,
        transparent 8px,
        transparent 16px
      );
      opacity: 0.3;
    }

    .portrait-stat-number {
      font-size: clamp(3rem, 5vw, 5rem);
      font-weight: 900;
      color: var(--brand-secondary);
      line-height: 1;
      margin-bottom: 0.75rem;
      font-family: "Barlow", sans-serif;
      letter-spacing: -0.02em;
    }

    .portrait-stat-label {
      font-size: 1rem;
      font-weight: 600;
      color: var(--brand-dark);
      line-height: 1.4;
      text-transform: none;
      letter-spacing: 0;
    }

    /* Portrait career timeline - Integrated in portrait section */
    .portrait-career-timeline {
      background: var(--brand-secondary);
      border-radius: 8px;
      padding: 2.5rem 2rem;
      margin: 3rem 0 2rem;
      position: relative;
      overflow: hidden;
    }

    .portrait-career-header-inline {
      text-align: center;
      margin-bottom: 2rem;
    }

    .portrait-career-eyebrow {
      font-size: 0.875rem;
      color: #fff;
      font-weight: 700;
      letter-spacing: 0.1em;
      margin-bottom: 0.5rem;
      opacity: 0.9;
    }

    .portrait-career-eyebrow::before,
    .portrait-career-eyebrow::after {
      content: "★";
      color: #fff;
      margin: 0 0.5rem;
      opacity: 0.9;
    }

    .portrait-career-title-inline {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 900;
      color: #fff;
      font-family: "Barlow", sans-serif;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      margin: 0;
    }

    .portrait-career-items {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.5rem;
      align-items: start;
    }

    .portrait-career-item {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .portrait-career-icon-wrapper {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      border: 3px solid #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .portrait-career-item:hover .portrait-career-icon-wrapper {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.1);
      border-color: rgba(255, 255, 255, 0.8);
    }

    .portrait-career-icon {
      font-size: 2rem;
      color: #fff;
      transition: all 0.3s ease;
    }

    .portrait-career-icon-image {
      width: 40px;
      height: 40px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      transition: all 0.3s ease;
    }

    .portrait-career-item:hover .portrait-career-icon-image {
      transform: scale(1.1);
    }

    .portrait-career-item-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      line-height: 1.3;
    }

    .portrait-career-item-date {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }

    @media (max-width: 992px) {
      .portrait-stats-container {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .portrait-career-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .portrait-stats-container {
        grid-template-columns: 1fr;
      }
      
      .portrait-stat-block:not(:last-child)::after {
        display: none;
      }

      .portrait-stat-block:not(:last-child) {
        border-bottom: 1px dashed rgba(30, 41, 59, 0.2);
        border-right: none;
        padding-bottom: 1.5rem;
        margin-bottom: 1rem;
      }

      .portrait-career-items {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .portrait-career-timeline {
        padding: 2rem 1.5rem;
      }
    }

    /* Vision & Mission - Exact model with red card left and white cards right */
    .vision-mission-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 2rem;
      align-items: stretch;
    }

    .vision-red-card {
      position: relative;
      background: var(--brand-secondary);
      border-radius: 12px;
      overflow: hidden;
      min-height: 650px;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 3rem;
    }

    .vision-red-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        linear-gradient(135deg, rgba(220, 38, 38, 0.85) 0%, rgba(220, 38, 38, 0.92) 100%),
        url('/assets/hero.jpg') center/cover no-repeat;
      opacity: 1;
      z-index: 1;
    }

    .vision-red-card-content {
      position: relative;
      z-index: 2;
      color: #fff;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .vision-red-card-eyebrow {
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      margin-bottom: 1.5rem;
      opacity: 1;
      text-transform: uppercase;
      color: #fff;
      line-height: 1.4;
    }

    .vision-red-card-title {
      font-size: clamp(2.25rem, 5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 2rem;
      font-family: "Barlow", sans-serif;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      color: #fff;
    }

    .vision-red-card-subtitle {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      opacity: 0.95;
      color: #fff;
    }

    .vision-red-card-text {
      margin-bottom: 2rem;
      opacity: 0.95;
      flex-grow: 1;
    }

    .vision-red-card-text h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #fff;
    }

    .vision-red-card-text p {
      font-size: 1rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.95);
    }

    .vision-red-card-highlight {
      background: rgba(255, 255, 255, 0.15);
      border-left: 4px solid #fff;
      padding: 1.5rem;
      margin-bottom: 2rem;
      border-radius: 4px;
      font-size: 1rem;
      line-height: 1.7;
      color: #fff;
    }

    .vision-red-card-highlight strong {
      font-size: 1.1rem;
      display: block;
      margin-bottom: 0.5rem;
    }

    .vision-red-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: var(--brand-secondary);
      border: 2px solid #fff;
      color: #fff;
      padding: 1rem 2.25rem;
      font-weight: 700;
      text-decoration: none;
      border-radius: 4px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 0.95rem;
      align-self: flex-start;
      margin-top: auto;
    }

    .vision-red-card-cta:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: #fff;
      color: #fff;
      transform: translateX(6px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .vision-red-card-cta i {
      transition: transform 0.3s ease;
      font-size: 1.2rem;
      font-weight: 900;
    }

    .vision-red-card-cta:hover i {
      transform: translateX(6px);
    }

    .vision-white-cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      align-items: stretch;
    }

    .vision-white-card {
      background: #fff;
      border-radius: 12px;
      padding: 2.5rem 2rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid #f1f5f9;
      position: relative;
      overflow: hidden;
    }

    .vision-white-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--brand-secondary);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .vision-white-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      border-color: var(--brand-secondary);
    }

    .vision-white-card:hover::before {
      transform: scaleX(1);
    }

    .vision-white-card-icon {
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: var(--brand-secondary);
      border: 2px solid var(--brand-secondary);
      border-radius: 12px;
      margin-bottom: 1.75rem;
      font-size: 2rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .vision-white-card-icon::after {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: 12px;
      background: var(--brand-secondary);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
    }

    .vision-icon-image {
      width: 45px;
      height: 45px;
      object-fit: contain;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .vision-white-card:hover .vision-icon-image {
      transform: scale(1.15);
    }

    .vision-white-card-icon {
      overflow: hidden;
    }

    .vision-white-card-icon i {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .vision-white-card:hover .vision-white-card-icon {
      background: var(--brand-secondary);
      color: #fff;
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    }

    .vision-white-card:hover .vision-white-card-icon::after {
      opacity: 0.1;
    }

    .vision-white-card-title {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--brand-dark);
      margin-bottom: 1rem;
      font-family: "Barlow", sans-serif;
      line-height: 1.3;
      transition: color 0.3s ease;
    }

    .vision-white-card:hover .vision-white-card-title {
      color: var(--brand-secondary);
    }

    .vision-white-card-text {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #64748b;
      margin: 0;
      transition: color 0.3s ease;
    }

    .vision-white-card:hover .vision-white-card-text {
      color: #475569;
    }

    @media (max-width: 992px) {
      .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .vision-red-card {
        min-height: auto;
        padding: 2.5rem;
      }

      .vision-white-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .vision-white-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }

      .vision-red-card {
        padding: 2rem 1.5rem;
        min-height: 500px;
      }

      .vision-white-card {
        padding: 2rem 1.5rem;
      }
    }

    .pillars-grid { 
      display: grid; 
      gap: 1.5rem; 
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    }

    /* Strength Of Candidate model - Grandes activités prévues */
    .strength-section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .strength-eyebrow {
      display: block;
      color: var(--brand-primary);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 1rem;
    }

    .strength-mission {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: #64748b;
      line-height: 1.7;
    }

    .strength-content-wrapper {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 3rem;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
    }

    .strength-column {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .strength-column-left {
      align-items: flex-end;
    }

    .strength-column-right {
      align-items: flex-start;
    }

    .strength-image-center {
      position: relative;
      flex-shrink: 0;
    }

    .strength-image-spacer {
      width: 400px;
      visibility: hidden;
    }

    .strength-row-margin {
      margin-top: 4rem;
    }

    .strength-image-wrapper {
      position: relative;
      width: 400px;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .strength-portrait {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
      position: relative;
      z-index: 2;
      filter: brightness(1.05);
    }

    .strength-red-cross {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--brand-accent);
      clip-path: polygon(
        40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%
      );
      z-index: 1;
      opacity: 0.15;
    }

    .strength-box {
      background: #fff;
      border: 1px solid #e2e8f0;
      padding: 1.5rem;
      max-width: 350px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .strength-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      border-color: var(--brand-secondary);
    }

    .strength-box-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      flex-wrap: wrap;
    }

    .strength-box-title {
      font-size: 1.1rem;
      color: var(--brand-dark);
      font-weight: 700;
      font-family: 'Barlow', sans-serif;
    }

    .strength-box-number {
      color: var(--brand-accent);
      font-size: 1.25rem;
      font-weight: 900;
      font-family: 'Barlow', sans-serif;
    }

    .strength-box-stars {
      color: var(--brand-accent);
      font-size: 0.9rem;
      letter-spacing: 2px;
    }

    .strength-box-text {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #475569;
      margin: 0;
    }

    @media (max-width: 1200px) {
      .strength-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .strength-image-center {
        order: -1;
        margin: 0 auto;
      }

      .strength-image-wrapper {
        width: 300px;
        height: 375px;
      }

      .strength-column-left,
      .strength-column-right {
        align-items: stretch;
      }

      .strength-box {
        max-width: 100%;
      }
    }

    @media (max-width: 768px) {
      .strength-image-wrapper {
        width: 250px;
        height: 312px;
      }

      .strength-box {
        padding: 1.25rem;
      }
    }

    /* Piliers cards - New format with images and overlay icons */
    .pillar-card-new {
      background: #fff;
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      display: flex;
      flex-direction: column;
      border: 1px solid #f1f5f9;
    }

    .pillar-card-new:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
      border-color: var(--brand-secondary);
    }

    .pillar-card-image-wrapper {
      position: relative;
      width: 100%;
      height: 280px;
      overflow: hidden;
      background: #e2e8f0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pillar-card-image-wrapper::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.9);
      z-index: 1;
      transition: background-color 0.4s ease;
    }

    .pillar-card-new:hover .pillar-card-image-wrapper::before {
      background: rgba(255, 255, 255, 0.95);
    }

    .pillar-card-new:hover .pillar-card-image-wrapper {
      background-size: 115%;
    }

    .pillar-card-icon-center {
      position: relative;
      z-index: 2;
      width: 120px;
      height: 120px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-secondary);
      font-size: 3.5rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(10px);
      overflow: hidden;
    }

    .pillar-icon-image {
      width: 80px;
      height: 80px;
      object-fit: contain;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pillar-card-new:hover .pillar-icon-image {
      transform: scale(1.15);
    }

    .pillar-card-icon-center i {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pillar-card-new:hover .pillar-card-icon-center {
      transform: scale(1.15) rotate(5deg);
      background: rgba(255, 255, 255, 1);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
      color: var(--brand-primary);
    }

    .pillar-card-number-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 70px;
      height: 70px;
      background: var(--brand-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 2rem;
      font-weight: 900;
      font-family: "Barlow", sans-serif;
      z-index: 3;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .pillar-card-new:hover .pillar-card-number-overlay {
      width: 80px;
      height: 80px;
      font-size: 2.5rem;
      background: var(--brand-primary);
      transform: translate(-5px, -5px);
      box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    }

    .pillar-card-body {
      padding: 2rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .pillar-card-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--brand-dark);
      margin-bottom: 1rem;
      font-family: "Barlow", sans-serif;
      line-height: 1.3;
      transition: color 0.3s ease;
    }

    .pillar-card-new:hover .pillar-card-title {
      color: var(--brand-secondary);
    }

    .pillar-card-text {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #64748b;
      margin-bottom: 1.5rem;
      flex-grow: 1;
      transition: color 0.3s ease;
    }

    .pillar-card-new:hover .pillar-card-text {
      color: #475569;
    }

    .pillar-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--brand-secondary);
      font-weight: 700;
      text-decoration: none;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: all 0.3s ease;
      margin-top: auto;
      width: fit-content;
    }

    .pillar-card-link i {
      transition: transform 0.3s ease;
      font-size: 1.1rem;
    }

    .pillar-card-link:hover {
      color: var(--brand-primary);
      transform: translateX(4px);
    }

    .pillar-card-link:hover i {
      transform: translateX(6px);
    }

    .pillar-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      color: var(--brand-dark);
    }

    .pillar-card p {
      color: #64748b;
      line-height: 1.6;
      margin: 0;
      font-size: 0.9rem;
    }

    .pillar-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .icon-circle {
      width: 56px;
      height: 56px;
      border-radius: 8px;
      background: var(--brand-primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.5rem;
      box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    }

    /* Hero poster - Senatory style */
    /* Hero poster - Centered with overlay */
    .hero-poster {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 85%;
      max-width: 1100px;
      z-index: 1;
      pointer-events: none;
    }

    .hero-poster img {
      width: 100%;
      height: auto;
      max-height: 1000px;
      object-fit: contain;
      border-radius: 0;
      box-shadow: none;
      opacity: 0.6;
      filter: grayscale(10%);
    }

    /* Senatory Feature Cards */
    .senatory-feature-cards {
      background: #fff;
      position: relative;
      padding: 4rem 0;
      margin-top: -2rem;
      position: relative;
      z-index: 3;
    }

    .senatory-card {
      background: #fff;
      border: 2px dashed var(--brand-secondary);
      border-radius: 0;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .senatory-card:hover {
      border-color: var(--brand-primary);
      background: var(--brand-light);
      transform: translateY(-4px);
    }

    .senatory-card-icon {
      width: 80px;
      height: 80px;
      background: var(--brand-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      border: 3px solid var(--brand-secondary);
      transition: all 0.3s ease;
    }

    .senatory-card:hover .senatory-card-icon {
      background: var(--brand-primary);
      border-color: var(--brand-primary);
    }

    .senatory-icon-image {
      width: 50px;
      height: 50px;
      object-fit: contain;
      transition: all 0.3s ease;
    }

    .senatory-card:hover .senatory-icon-image {
      transform: scale(1.1);
    }

    .senatory-card-icon i {
      font-size: 2rem;
      color: #fff;
    }

    .senatory-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--brand-dark);
      margin: 0;
      font-family: "Barlow", sans-serif;
    }

    /* Vertical CTA bar - Senatory style */
    .hero-vertical-cta {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%) rotate(-90deg);
      background: var(--brand-secondary);
      color: #fff;
      padding: 1rem 2rem;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .hero-vertical-cta:hover {
      background: #b91c1c;
      color: #fff;
      padding-right: 2.5rem;
    }

    .hero-vertical-cta i {
      transform: rotate(90deg);
    }

    /* Section backgrounds - Senatory style */
    .bg-light-brand {
      background: var(--brand-light) !important;
    }

    .bg-cream {
      background: #fefcf9 !important;
    }

    @media (max-width: 992px) {
      .hero {
        min-height: auto;
        padding: 4rem 0 6rem;
        position: relative;
      }
      .hero-poster {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        max-width: 600px;
        margin-top: 0;
        padding-left: 0;
        z-index: 1;
      }
      .hero-poster img {
        max-height: 450px;
        opacity: 0.5;
      }
      .hero-overlay {
        background: linear-gradient(135deg, 
          rgba(248, 250, 252, 0.70) 0%, 
          rgba(248, 250, 252, 0.55) 30%,
          rgba(248, 250, 252, 0.45) 50%,
          rgba(248, 250, 252, 0.55) 70%,
          rgba(248, 250, 252, 0.70) 100%);
      }
      .hero-content {
        margin-top: 30vh;
        padding-bottom: 2rem;
        position: relative;
        z-index: 3;
      }
      .hero-vertical-cta {
        display: none;
      }
      .hero h1 {
        text-align: center;
      }
      .hero .slogan {
        text-align: center;
      }
      .portrait-wrapper {
        flex-direction: column;
        min-height: auto;
      }
      .portrait-photo-section {
        flex: 0 0 auto;
        min-height: 400px;
      }
      .portrait-vertical-bar {
        width: 80px;
        padding: 1.5rem 0.75rem;
      }
      .portrait-vertical-icon {
        font-size: 2rem;
        margin-bottom: 1.5rem;
      }
      .portrait-vertical-text {
        font-size: 0.7rem;
      }
      .portrait-content-section {
        flex: 0 0 auto;
        padding: 3rem 2rem;
      }
    }

    /* Timeline - Senatory style */
    .timeline { position: relative; padding-left: 2rem; }
    .timeline::before { 
      content: ""; 
      position: absolute; 
      left: 0; 
      top: 0; 
      bottom: 0; 
      width: 3px; 
      background: var(--brand-primary);
      border-radius: 2px;
    }
    .timeline-item { 
      position: relative; 
      padding-left: 3rem; 
      margin-bottom: 2rem; 
      padding-bottom: 2rem;
      border-bottom: 1px solid #e2e8f0;
    }
    .timeline-item:last-child {
      border-bottom: none;
    }
    .timeline-item::before { 
      content: ""; 
      position: absolute; 
      left: -9px; 
      top: 6px; 
      width: 20px; 
      height: 20px; 
      border-radius: 50%; 
      background: #fff;
      border: 3px solid var(--brand-primary);
      box-shadow: 0 0 0 4px #fff;
    }

    .stat-card {
      background: #fff;
      border-radius: 0;
      padding: 1.5rem;
      border: 2px dashed var(--brand-secondary);
      box-shadow: none;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .stat-card:hover {
      transform: translateY(-2px);
      border-color: var(--brand-primary);
      border-style: solid;
      background: var(--brand-light);
    }

    .stat-card strong {
      display: block;
      font-size: 2.25rem;
      color: var(--brand-secondary);
      margin-bottom: 0.5rem;
      font-weight: 900;
      font-family: "Barlow", sans-serif;
      line-height: 1;
    }

    .stat-card span { 
      color: var(--brand-dark);
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .double-column {
      column-count: 2;
      column-gap: 2rem;
      line-height: 1.8;
    }

    .double-column li {
      margin-bottom: 1rem;
      break-inside: avoid;
    }

    /* Portrait sections - optimized for readability */
    #portrait .card p.small {
      font-size: 0.95rem;
      line-height: 1.7;
    }

    #portrait .card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
    }

    /* Formulaires - Senatory style */
    .form-label {
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .form-control, .form-select {
      border: 2px solid #e2e8f0;
      border-radius: 4px;
      padding: 0.75rem 1rem;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--brand-primary);
      box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
      outline: none;
    }

    /* Témoignages - Senatory style */
    .testimonial-card {
      position: relative;
      padding: 2rem;
      background: #fff;
      border-left: 4px solid var(--brand-primary);
    }

    .testimonial-card blockquote {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--brand-dark);
      font-style: italic;
      margin-bottom: 1.5rem;
      position: relative;
      padding-left: 1.5rem;
    }

    .testimonial-card blockquote::before {
      content: '"';
      position: absolute;
      left: 0;
      top: -0.5rem;
      font-size: 3rem;
      color: var(--brand-primary);
      opacity: 0.2;
      font-family: Georgia, serif;
    }

    .testimonial-card .author {
      font-weight: 600;
      color: var(--brand-primary);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Médias cards - Senatory style */
    .media-card {
      overflow: hidden;
      position: relative;
    }

    .media-card img {
      transition: transform 0.3s ease;
      height: 250px;
      object-fit: cover;
    }

    .media-card:hover img {
      transform: scale(1.05);
    }

    .media-card .card-body {
      padding: 1.5rem;
    }

    .media-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
    }

    .media-card p {
      color: #64748b;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Accordion FAQ - Senatory style */
    .accordion-item {
      border: 1px solid #e2e8f0;
      border-radius: 8px !important;
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .accordion-button {
      font-weight: 600;
      font-family: "Barlow", sans-serif;
      color: var(--brand-dark);
      background: #fff;
      padding: 1.25rem 1.5rem;
      font-size: 1rem;
      border: none;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background: var(--brand-light);
      color: var(--brand-primary);
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    }

    .accordion-body {
      padding: 1.5rem;
      color: #64748b;
      line-height: 1.8;
    }

    /* Activities blocks - Senatory style */
    .activity-block {
      border-left: 4px solid var(--brand-primary);
      padding-left: 1.5rem;
    }

    .activity-block h3 {
      color: var(--brand-primary);
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .activity-block ul {
      list-style: none;
      padding: 0;
    }

    .activity-block li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.75rem;
      line-height: 1.7;
      color: #475569;
    }

    .activity-block li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--brand-secondary);
      font-weight: 800;
      font-size: 1.2rem;
    }

    /* Contact card - Senatory style */
    .contact-card .list-unstyled li {
      padding: 0.75rem 0;
      border-bottom: 1px solid #e2e8f0;
      transition: all 0.3s ease;
    }

    .contact-card .list-unstyled li:last-child {
      border-bottom: none;
    }

    .contact-card .list-unstyled li:hover {
      padding-left: 0.5rem;
    }

    .contact-card a {
      color: var(--brand-dark);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-card a:hover {
      color: var(--brand-primary);
    }

    /* Engagement preview - Two column model with photo */
    #engagement-preview {
      background: #fff;
      padding: 0;
      overflow: hidden;
    }

    .engagement-wrapper {
      display: flex;
      min-height: 600px;
      align-items: stretch;
    }

    .engagement-image-col {
      flex: 0 0 50%;
      position: relative;
      background: #f8fafc;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .engagement-image-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .engagement-content-col {
      flex: 0 0 50%;
      background: var(--brand-dark);
      color: #fff;
      padding: 4rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .engagement-eyebrow {
      display: block;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 1.5rem;
    }

    .engagement-eyebrow::before {
      content: "★";
      color: var(--brand-secondary);
      margin-right: 0.5rem;
      font-size: 1rem;
    }

    .engagement-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 2rem;
      font-family: "Barlow", sans-serif;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }

    .engagement-title .highlight {
      color: var(--brand-secondary);
      display: block;
    }

    .engagement-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2rem;
    }

    .engagement-quote-block {
      background: rgba(255, 255, 255, 0.05);
      border-left: 4px solid var(--brand-secondary);
      padding: 2rem;
      margin: 2rem 0;
      position: relative;
    }

    .engagement-quote-block::after {
      content: """;
      position: absolute;
      top: -10px;
      right: 20px;
      font-size: 8rem;
      font-weight: 900;
      color: var(--brand-secondary);
      opacity: 0.2;
      font-family: "Barlow", sans-serif;
      line-height: 1;
    }

    .engagement-quote-text {
      font-size: 1.25rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #fff;
      line-height: 1.4;
      letter-spacing: 0.05em;
    }

    .engagement-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: var(--brand-secondary);
      color: #fff;
      font-weight: 700;
      text-decoration: none;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 1rem 2.5rem;
      border: none;
      transition: all 0.3s ease;
      width: fit-content;
      margin-top: 1rem;
    }

    .engagement-cta:hover {
      background: #b91c1c;
      transform: translateX(4px);
      color: #fff;
    }

    .engagement-cta i {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .engagement-cta:hover i {
      transform: translateX(4px);
    }

    @media (max-width: 992px) {
      .engagement-wrapper {
        flex-direction: column;
        min-height: auto;
      }

      .engagement-image-col {
        flex: 0 0 auto;
        min-height: 400px;
      }

      .engagement-content-col {
        flex: 0 0 auto;
        padding: 3rem 2rem;
      }
    }

    @media (max-width: 992px) {
      .hero { text-align: center; }
      .hero-content { align-items: center; }
      .hero-stats { justify-content: center; }
      .double-column { column-count: 1; }
      .portrait-card { flex-direction: column; }
      .portrait-photo { min-height: 280px; }
    }

    /* Footer */
    footer a { color: #ddd; transition: color 0.18s ease; }
    footer a:hover { color: #fff; }

    /* Accessibility */
    a:focus, button:focus { outline: 3px solid var(--brand-teal) !important; outline-offset: 1px; }
    
    /* Accents pour les titres importants */
    h1 .text-red, .display-4 .text-red {
      color: var(--brand-secondary) !important;
    }
    
    h1 .text-teal, .display-4 .text-teal {
      color: var(--brand-primary) !important;
    }

    /* Navigation - Senatory style */
    .navbar {
      padding: 1.25rem 0;
      background: #fff !important;
      border-bottom: 1px solid #e2e8f0;
    }

    .navbar-brand {
      font-family: "Barlow", sans-serif;
      font-weight: 900;
      font-size: 1.75rem;
      letter-spacing: -0.02em;
      color: var(--brand-primary) !important;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .navbar-brand i {
      color: var(--brand-secondary);
      font-size: 1.5rem;
    }

    .nav-link {
      font-weight: 600;
      letter-spacing: 0.3px;
      color: var(--brand-dark) !important;
      transition: color 0.3s ease;
      padding: 0.5rem 1rem !important;
      font-size: 0.95rem;
    }

    .nav-link:hover {
      color: var(--brand-secondary) !important;
    }

    .navbar .btn-outline-gold {
      border-color: var(--brand-secondary);
      color: var(--brand-secondary);
      font-weight: 600;
      padding: 0.5rem 1.5rem;
    }

    .navbar .btn-outline-gold:hover {
      background: var(--brand-secondary);
      color: #fff;
    }

    /* Sections spacing */
    section {
      padding: 5rem 0;
    }

    /* Footer */
    footer {
      padding: 3rem 0;
      background: var(--brand-dark);
    }
  

/* Styles spécifiques de pourquoi.php */

.engagement-hero {
      background: linear-gradient(135deg, var(--brand-primary-90), var(--brand-dark)),
                  url('/assets/hero.jpg') center/cover no-repeat;
      color: #fff;
      padding: 8rem 0 4rem;
      position: relative;
    }

.engagement-section {
      padding: 4rem 0;
    }

.boussoles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin: 3rem 0;
    }

.boussole-card {
      background: white;
      border-radius: 8px;
      padding: 1.75rem;
      border: 2px solid #e2e8f0;
      border-left: 4px solid var(--brand-primary);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

.serment-box {
      background: var(--brand-light);
      border: 2px solid var(--brand-primary);
      border-radius: 8px;
      padding: 3rem;
      margin: 3rem 0;
      text-align: center;
      box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
    }

.dernier-mot {
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
      color: white;
      padding: 4rem 0;
      text-align: center;
    }

.btn-back {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 1000;
      background: var(--brand-primary);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
      transition: all 0.3s ease;
    }

.mission-highlight {
      font-size: 1.5rem;
      font-weight: 800;
      margin-top: 2rem;
      display: block;
      letter-spacing: 1px;
    }

