    /* ====================================================
       VARIABLES & RESET
    ==================================================== */
    :root {
      --c-blue: #417ff1;
      --c-purple: #5b3bcf;
      --c-violet: #a21cb1;
      --c-pink: #ef0d6b;
      --c-orange: #f5902e;
      --c-yellow: #f5e10e;
      --grad: linear-gradient(90deg, var(--c-blue) 0%, var(--c-purple) 25%, var(--c-violet) 45%, var(--c-pink) 65%, var(--c-orange) 83%, var(--c-yellow) 100%);
      --font: 'Inter', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
      --text: #1f2937;
      --muted: #6b7280;
      --border: #e5e7eb;
      --bg-b2b: #f8f7fe;
      --bg-b2c: #fef5f8;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    body {
      font-family: var(--font);
      color: var(--text);
      margin: 0;
      padding: 0;
      background: #fff;
    }

    /* ====================================================
       NAVBAR
    ==================================================== */
    #site-navbar {
      background: #fff;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    #site-navbar .navbar-brand img {
      height: 50px;
      width: auto;
      display: block;
    }

    /* Burger button */
    #site-navbar .navbar-toggler {
      border: 2px solid var(--border);
      border-radius: 8px;
      padding: 6px 10px;
      background: transparent;
    }

    #site-navbar .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23374151' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    #site-navbar .navbar-toggler:focus {
      box-shadow: none;
      outline: none;
    }

    /* Nav links */
    #site-navbar .nav-link {
      font-family: var(--font);
      font-weight: 600;
      font-size: 0.92rem;
      color: var(--text);
      padding: 8px 14px;
      border-radius: 8px;
      transition: background 0.18s, color 0.18s;
      white-space: nowrap;
    }

    #site-navbar .nav-link:hover,
    #site-navbar .nav-link:focus {
      color: var(--c-purple);
      background: rgba(91, 59, 207, 0.07);
    }

    #site-navbar .nav-link.link-b2b:hover {
      color: var(--c-purple);
      background: rgba(91, 59, 207, 0.07);
    }

    #site-navbar .nav-link.link-b2c:hover {
      color: var(--c-pink);
      background: rgba(239, 13, 107, 0.07);
    }

    #site-navbar .nav-link.link-about:hover {
      color: #0d9488;
      background: rgba(13, 148, 136, 0.07);
    }

    #site-navbar .nav-link.link-blog:hover {
      color: var(--c-orange);
      background: rgba(245, 144, 46, 0.07);
    }

    #site-navbar .nav-link.link-contact:hover {
      color: var(--c-blue);
      background: rgba(65, 127, 241, 0.07);
    }

    /* Separateur droite */
    .nav-separator {
      width: 1px;
      height: 22px;
      background: var(--border);
      align-self: center;
      flex-shrink: 0;
    }

    /* Navbar Reservation Button */
    .btn-nav-reserve {
      background: linear-gradient(135deg, var(--c-purple), var(--c-pink)) !important;
      color: #ffffff !important;
      font-weight: 700 !important;
      font-size: 0.82rem !important;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 9px 18px !important;
      border-radius: 30px !important;
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
      box-shadow: 0 4px 15px rgba(91, 59, 207, 0.15) !important;
      border: none !important;
      display: inline-flex !important;
      align-items: center;
      gap: 6px;
    }

    .btn-nav-reserve:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 8px 20px rgba(91, 59, 207, 0.25) !important;
      opacity: 0.95 !important;
      color: #ffffff !important;
    }

    .btn-nav-reserve:active {
      transform: translateY(0) !important;
    }


    /* Dropdown */
    #site-navbar .dropdown-menu {
      border: none;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
      padding: 10px;
      min-width: 230px;
      margin-top: 6px;
    }

    .dd-b2b {
      border-top: 3px solid var(--c-purple);
    }

    .dd-b2c {
      border-top: 3px solid var(--c-pink);
    }

    .dd-label {
      font-size: 0.62rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      color: #9ca3af;
      padding: 4px 10px 8px;
      display: block;
    }

    #site-navbar .dropdown-item {
      font-family: var(--font);
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text);
      border-radius: 7px;
      padding: 9px 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background 0.15s, color 0.15s;
    }

    .dd-b2b .dropdown-item:hover {
      background: rgba(91, 59, 207, 0.07);
      color: var(--c-purple);
    }

    .dd-b2c .dropdown-item:hover {
      background: rgba(239, 13, 107, 0.07);
      color: var(--c-pink);
    }

    /* Language selector dropdown style adjustments */
    #site-navbar .lang-dropdown-menu {
      min-width: 150px !important;
      padding: 6px !important;
    }

    #site-navbar .lang-dropdown-menu .dropdown-item {
      font-size: 0.82rem !important;
      padding: 6px 12px !important;
      justify-content: flex-start;
      gap: 6px;
    }

    #site-navbar .lang-dropdown-menu .dropdown-item.active {
      background: rgba(91, 59, 207, 0.08) !important;
      color: var(--c-purple) !important;
    }

    #site-navbar .lang-dropdown-menu .dropdown-item:hover {
      background: rgba(91, 59, 207, 0.05) !important;
      color: var(--c-purple) !important;
    }

    /* Desktop: hover-open dropdowns */
    @media (min-width: 992px) {
      #site-navbar .nav-item.dropdown>.dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        transition-delay: 0.15s; /* Slight delay before closing so it does not disappear too fast */
      }

      #site-navbar .nav-item.dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s; /* Open instantly */
      }

      /* Bridge the hover gap between nav-link and dropdown-menu */
      #site-navbar .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 20px;
        background: transparent;
      }

      #site-navbar .nav-right {
        border-left: 1px solid var(--border);
        padding-left: 16px;
        margin-left: 12px;
      }
    }

    /* Mobile */
    @media (max-width: 991.98px) {
      #site-navbar .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
        border-top: 1px solid var(--border);
        padding-top: 12px;
        padding-bottom: 16px;
      }

      #site-navbar .nav-right {
        border-top: 1px solid var(--border);
        padding-top: 12px;
        margin-top: 8px;
      }

      .nav-separator {
        display: none;
      }

      #site-navbar .nav-link {
        padding: 10px 14px;
        width: 100%;
        display: block;
      }

      /* Dropdown mobile en accordéon */
      #site-navbar .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border: 1px solid var(--border);
        margin: 4px 0 8px 12px;
        padding: 6px;
        min-width: 0;
        width: calc(100% - 12px);
      }
    }

    /* ====================================================
       COLORFUL SEPARATOR
    ==================================================== */
    .grad-bar {
      height: 5px;
      background: var(--grad);
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
    }

    /* ====================================================
       HERO / PAGE TITLE
    ==================================================== */
    .page-hero {
      padding: 36px 0 28px;
      text-align: center;
    }

    .page-hero h1 {
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 800;
      color: var(--text);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin: 0 0 10px;
    }

    .page-hero .subtitle {
      font-size: 1rem;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 3px;
    }

    /* ====================================================
       BIO SECTION
    ==================================================== */
    .bio-section {
      padding: 28px 0 40px;
    }

    .bio-section h2 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 6px;
    }

    .bio-section .bio-role {
      font-size: 1rem;
      font-weight: 700;
      color: var(--c-purple);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 24px;
    }

    .bio-section p {
      font-size: 1rem;
      line-height: 1.75;
      color: #4b5563;
      margin-bottom: 14px;
      text-align: justify;
    }

    /* ====================================================
       BIO IMAGE NEW PREMIUM INTEGRATION
     ==================================================== */
    .bio-image-wrapper {
      position: relative;
      display: inline-block;
      width: 100%;
      max-width: 520px;
      margin: 0 auto;
      padding: 15px;
      /* space for offset frame */
    }

    /* Soft colorful backdrop glow */
    .bio-image-bg-glow {
      position: absolute;
      top: 10%;
      left: 10%;
      right: 10%;
      bottom: 10%;
      background: radial-gradient(circle, rgba(91, 59, 207, 0.15) 0%, rgba(239, 13, 107, 0.1) 60%, transparent 100%);
      filter: blur(30px);
      z-index: 1;
      pointer-events: none;
    }

    /* Offset decorative border */
    .bio-image-border-offset {
      position: absolute;
      top: 30px;
      left: 30px;
      right: 0px;
      bottom: 0px;
      border: 2.5px solid var(--c-purple);
      border-radius: 24px;
      z-index: 2;
      pointer-events: none;
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .bio-photo,
    .bio-image-wrapper img {
      position: relative;
      z-index: 3;
      border-radius: 24px;
      border: 6px solid #fff;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
      width: 100%;
      max-width: 100%;
      aspect-ratio: 3 / 4;
      /* Fits the beautiful portrait orientation perfectly! */
      object-fit: cover;
      display: block;
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    }

    /* Floating premium badge */
    .bio-badge {
      position: absolute;
      bottom: 35px;
      left: -15px;
      z-index: 4;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 16px;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 10px 30px rgba(91, 59, 207, 0.12);
      text-align: left;
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      max-width: 320px;
    }

    .bio-badge .badge-icon {
      font-size: 1.4rem;
      background: linear-gradient(135deg, var(--c-purple), var(--c-pink));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bio-badge .badge-title {
      display: block;
      font-weight: 700;
      font-size: 0.82rem;
      color: var(--text);
      line-height: 1.2;
      white-space: nowrap;
    }

    .bio-badge .badge-sub {
      display: block;
      font-size: 0.7rem;
      color: var(--muted);
      font-weight: 500;
      margin-top: 2px;
      white-space: normal;
    }

    /* Hover interactions */
    .bio-image-wrapper:hover .bio-photo,
    .bio-image-wrapper:hover img {
      transform: translateY(-6px);
      box-shadow: 0 24px 48px rgba(91, 59, 207, 0.12);
    }

    .bio-image-wrapper:hover .bio-image-border-offset {
      transform: translate(6px, 6px);
    }

    .bio-image-wrapper:hover .bio-badge {
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 575.98px) {
      .bio-image-wrapper {
        max-width: 300px;
      }

      .bio-badge {
        bottom: 20px;
        left: -5px;
        padding: 8px 14px;
        max-width: 260px;
      }

      .bio-badge .badge-title {
        font-size: 0.75rem;
      }

      .bio-badge .badge-sub {
        font-size: 0.65rem;
      }
    }

    /* Value cards premium rewrite - Modern Icon-based styling */
    .value-card {
      position: relative;
      border-radius: 20px;
      padding: 30px;
      background: #ffffff;
      border: 1px solid #eef0f3;
      height: 100%;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    /* Icon wrapper style */
    .value-card .val-icon-wrapper {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .value-card .val-name {
      font-family: var(--font);
      font-weight: 700;
      font-size: 1.25rem;
      color: #111827;
      margin: 0 0 10px;
      transition: color 0.3s ease;
      display: block;
    }

    .value-card .val-desc {
      font-size: 0.92rem;
      color: #4b5563;
      line-height: 1.65;
      margin: 0;
      text-align: justify;
      transition: color 0.3s ease;
    }

    /* Color styles */
    .val-ecoute .val-icon-wrapper {
      background: rgba(65, 127, 241, 0.08);
      color: #417ff1;
    }
    .val-ecoute:hover {
      border-color: rgba(65, 127, 241, 0.15);
      background: linear-gradient(135deg, #ffffff 60%, rgba(65, 127, 241, 0.05) 100%);
      box-shadow: 0 12px 30px rgba(65, 127, 241, 0.1);
    }
    .val-ecoute:hover .val-icon-wrapper {
      background: #417ff1;
      color: #ffffff;
      transform: scale(1.1) rotate(5deg);
    }

    .val-exigence .val-icon-wrapper {
      background: rgba(91, 59, 207, 0.08);
      color: #5b3bcf;
    }
    .val-exigence:hover {
      border-color: rgba(91, 59, 207, 0.15);
      background: linear-gradient(135deg, #ffffff 60%, rgba(91, 59, 207, 0.05) 100%);
      box-shadow: 0 12px 30px rgba(91, 59, 207, 0.1);
    }
    .val-exigence:hover .val-icon-wrapper {
      background: #5b3bcf;
      color: #ffffff;
      transform: scale(1.1) rotate(5deg);
    }

    .val-structure .val-icon-wrapper {
      background: rgba(162, 28, 177, 0.08);
      color: #a21cb1;
    }
    .val-structure:hover {
      border-color: rgba(162, 28, 177, 0.15);
      background: linear-gradient(135deg, #ffffff 60%, rgba(162, 28, 177, 0.05) 100%);
      box-shadow: 0 12px 30px rgba(162, 28, 177, 0.1);
    }
    .val-structure:hover .val-icon-wrapper {
      background: #a21cb1;
      color: #ffffff;
      transform: scale(1.1) rotate(5deg);
    }

    .val-joie .val-icon-wrapper {
      background: rgba(239, 13, 107, 0.08);
      color: #ef0d6b;
    }
    .val-joie:hover {
      border-color: rgba(239, 13, 107, 0.15);
      background: linear-gradient(135deg, #ffffff 60%, rgba(239, 13, 107, 0.05) 100%);
      box-shadow: 0 12px 30px rgba(239, 13, 107, 0.1);
    }
    .val-joie:hover .val-icon-wrapper {
      background: #ef0d6b;
      color: #ffffff;
      transform: scale(1.1) rotate(5deg);
    }

    /* General Hover Interaction */
    .value-card:hover {
      transform: translateY(-6px);
    }

    /* CTA link */
    .cta-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      margin-top: 28px;
      transition: gap 0.2s;
    }

    .cta-link:hover {
      gap: 14px;
    }

    /* ====================================================
       SERVICE ZONES
    ==================================================== */
    .zone-b2b {
      background: var(--bg-b2b);
    }

    .zone-b2c {
      background: var(--bg-b2c);
    }

    .zone-label {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      display: block;
      margin-bottom: 6px;
    }

    .zone-title {
      font-size: clamp(1.6rem, 3vw, 2.1rem);
      font-weight: 800;
      color: var(--text);
      margin: 0 0 10px;
    }

    .zone-desc {
      color: var(--muted);
      font-size: 0.98rem;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.65;
    }

    /* Premium Service Cards */
    .service-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 36px 32px;
      height: 100%;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
      border: 1px solid #eef0f3;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative;
      overflow: hidden;
    }

    .service-card.text-center {
      align-items: center;
    }

    /* Tag styles (pill style) */
    .service-card .svc-tag {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 5px 12px;
      border-radius: 30px;
      display: inline-block;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    /* Titles */
    .service-card .svc-title {
      font-family: var(--font);
      font-size: 1.45rem;
      font-weight: 800;
      color: #111827;
      margin: 0 0 14px;
      line-height: 1.3;
    }

    .service-card .svc-title a {
      color: inherit;
      text-decoration: none;
    }

    /* Descriptions */
    .service-card .svc-desc {
      font-size: 0.94rem;
      color: #4b5563;
      line-height: 1.65;
      margin-bottom: 28px;
      flex-grow: 1;
      text-align: justify;
    }

    .service-card.text-center .svc-desc {
      text-align: center;
    }

    /* Premium interactive button */
    .service-card .svc-btn {
      font-family: var(--font);
      font-weight: 700;
      font-size: 0.88rem;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
      margin-top: auto;
      border: 1px solid transparent;
    }

    .service-card .svc-btn i {
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    /* Hover arrow animation */
    .service-card:hover .svc-btn i {
      transform: translateX(4px);
    }

    /* Theme colors and variations */
    
    /* 1. B2B - Diversité & Inclusion (Blue) */
    .svc-b2b-1 .svc-tag {
      background: rgba(65, 127, 241, 0.08);
      color: #417ff1;
    }
    .svc-b2b-1 .svc-btn {
      background: rgba(65, 127, 241, 0.05);
      color: #417ff1;
      border-color: rgba(65, 127, 241, 0.15);
    }
    .svc-b2b-1:hover {
      border-color: rgba(65, 127, 241, 0.2);
      box-shadow: 0 16px 40px rgba(65, 127, 241, 0.08);
      transform: translateY(-6px);
      background: linear-gradient(135deg, #ffffff 60%, rgba(65, 127, 241, 0.03) 100%);
    }
    .svc-b2b-1:hover .svc-btn {
      background: #417ff1;
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(65, 127, 241, 0.25);
      border-color: #417ff1;
    }

    /* 2. B2B - Coaching (Purple) */
    .svc-b2b-2 .svc-tag {
      background: rgba(91, 59, 207, 0.08);
      color: #5b3bcf;
    }
    .svc-b2b-2 .svc-btn {
      background: rgba(91, 59, 207, 0.05);
      color: #5b3bcf;
      border-color: rgba(91, 59, 207, 0.15);
    }
    .svc-b2b-2:hover {
      border-color: rgba(91, 59, 207, 0.2);
      box-shadow: 0 16px 40px rgba(91, 59, 207, 0.08);
      transform: translateY(-6px);
      background: linear-gradient(135deg, #ffffff 60%, rgba(91, 59, 207, 0.03) 100%);
    }
    .svc-b2b-2:hover .svc-btn {
      background: #5b3bcf;
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(91, 59, 207, 0.25);
      border-color: #5b3bcf;
    }

    /* 3. B2B - Formations (Deep Violet) */
    .svc-b2b-3 .svc-tag {
      background: rgba(162, 28, 177, 0.08);
      color: #a21cb1;
    }
    .svc-b2b-3 .svc-btn {
      background: rgba(162, 28, 177, 0.05);
      color: #a21cb1;
      border-color: rgba(162, 28, 177, 0.15);
    }
    .svc-b2b-3:hover {
      border-color: rgba(162, 28, 177, 0.2);
      box-shadow: 0 16px 40px rgba(162, 28, 177, 0.08);
      transform: translateY(-6px);
      background: linear-gradient(135deg, #ffffff 60%, rgba(162, 28, 177, 0.03) 100%);
    }
    .svc-b2b-3:hover .svc-btn {
      background: #a21cb1;
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(162, 28, 177, 0.25);
      border-color: #a21cb1;
    }

    /* 4. B2C - Gestalt-thérapie (Pink/Magenta) */
    .svc-b2c-1 .svc-tag {
      background: rgba(239, 13, 107, 0.08);
      color: #ef0d6b;
    }
    .svc-b2c-1 .svc-btn {
      background: rgba(239, 13, 107, 0.05);
      color: #ef0d6b;
      border-color: rgba(239, 13, 107, 0.15);
    }
    .svc-b2c-1:hover {
      border-color: rgba(239, 13, 107, 0.2);
      box-shadow: 0 16px 40px rgba(239, 13, 107, 0.08);
      transform: translateY(-6px);
      background: linear-gradient(135deg, #ffffff 60%, rgba(239, 13, 107, 0.03) 100%);
    }
    .svc-b2c-1:hover .svc-btn {
      background: #ef0d6b;
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(239, 13, 107, 0.25);
      border-color: #ef0d6b;
    }

    /* ====================================================
       FOOTER
    ==================================================== */
    footer {
      background: #111827;
      color: #d1d5db;
      padding: 48px 0 0;
      font-size: 0.9rem;
    }

    footer h5 {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #9ca3af;
      margin-bottom: 16px;
    }

    footer a {
      color: #d1d5db;
      text-decoration: none;
      transition: color 0.15s;
    }

    footer a:hover {
      color: #fff;
    }

    footer .footer-social a {
      font-size: 1.2rem;
      margin-right: 14px;
      color: #9ca3af;
    }

    footer .footer-social a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 18px 0;
      margin-top: 40px;
      font-size: 0.8rem;
      color: #6b7280;
    }

    /* ====================================================
       FORMS
    ==================================================== */
    .form-control {
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: var(--font);
      font-size: 0.92rem;
      padding: 10px 14px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-control:focus {
      border-color: var(--c-purple);
      box-shadow: 0 0 0 3px rgba(91, 59, 207, 0.1);
      outline: none;
    }

    .form-label {
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--text);
      margin-bottom: 5px;
    }

    footer .form-label {
      color: #f3f4f6;
    }

    .btn-primary {
      background: var(--c-purple);
      border: none;
      border-radius: 8px;
      font-family: var(--font);
      font-weight: 700;
      margin-top: 4px;
      font-size: 0.92rem;
      padding: 11px 28px;
      transition: background 0.2s, transform 0.2s;
    }

    .btn-primary:hover {
      background: #4a2db0;
      transform: translateY(-1px);
    }

    html:not([lang="en"]) .en_form,
    html:not([lang="fr"]) .fr_form {
      display: none !important;
    }

    /* ====================================================
       ADDITIONAL PREMIUM ELEMENTS FOR INNER PAGES
    ==================================================== */
    .inner-hero {
      position: relative;
      background: radial-gradient(circle at 10% 20%, rgba(91, 59, 207, 0.03) 0%, rgba(239, 13, 107, 0.03) 90%), #ffffff;
      padding: 80px 0 50px;
      text-align: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
      overflow: hidden;
    }

    .inner-hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 3px;
      background: var(--grad);
      border-radius: 2px;
    }

    .inner-hero h1 {
      font-size: clamp(2.2rem, 6vw, 3.2rem);
      font-weight: 800;
      letter-spacing: -1px;
      color: #111827;
      margin: 0;
    }

    .inner-section {
      padding: 80px 0;
    }

    .section-lead {
      font-size: 1.25rem;
      line-height: 1.75;
      color: #4b5563;
      max-width: 800px;
      margin: 0 auto 50px;
      text-align: center;
      font-weight: 500;
    }

    /* Premium card grid layout */
    .card-premium {
      background: #ffffff;
      border: 1px solid #eef0f3;
      border-radius: 24px;
      padding: 40px;
      height: 100%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .card-premium:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(91, 59, 207, 0.08);
      border-color: rgba(91, 59, 207, 0.2);
    }

    .card-premium.accent-b2c:hover {
      box-shadow: 0 20px 40px rgba(239, 13, 107, 0.08);
      border-color: rgba(239, 13, 107, 0.2);
    }

    .card-premium h2, .card-premium h3 {
      font-size: 1.6rem;
      font-weight: 800;
      color: #111827;
      margin-top: 0;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
      line-height: 1.3;
    }

    .card-premium p {
      font-size: 1rem;
      line-height: 1.7;
      color: #4b5563;
      margin-bottom: 20px;
    }

    /* Icon box or decorative element */
    .icon-box-premium {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 25px;
      background: rgba(91, 59, 207, 0.08);
      color: var(--c-purple);
    }

    .accent-b2c .icon-box-premium {
      background: rgba(239, 13, 107, 0.08);
      color: var(--c-pink);
    }

    .accent-b2b-blue .icon-box-premium {
      background: rgba(65, 127, 241, 0.08);
      color: var(--c-blue);
    }

    /* Badge details */
    .badge-info-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 700;
      color: #4b5563;
      background: #f3f4f6;
      padding: 6px 14px;
      border-radius: 30px;
      margin-right: 8px;
      margin-bottom: 12px;
    }

    .badge-info-pill i {
      font-size: 0.85rem;
      color: var(--c-purple);
    }

    .accent-b2c .badge-info-pill i {
      color: var(--c-pink);
    }

    /* Premium image block inside cards or rows */
    .img-wrapper-premium {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      border: 4px solid #ffffff;
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fdfdfd;
      margin-bottom: 25px;
    }

    .img-wrapper-premium img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .img-wrapper-premium:hover img {
      transform: scale(1.04);
    }

    /* Premium lists */
    .list-premium {
      list-style: none;
      padding-left: 0;
      margin-bottom: 20px;
    }

    .list-premium li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 12px;
      font-size: 0.98rem;
      line-height: 1.6;
      color: #374151;
    }

    .list-premium li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 2px;
      color: var(--c-purple);
      font-size: 0.9rem;
    }

    .accent-b2c .list-premium li::before {
      color: var(--c-pink);
    }

    .accent-b2b-blue .list-premium li::before {
      color: var(--c-blue);
    }

    /* Visual Divider */
    .divider-premium {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
      margin: 60px 0;
    }

    /* Details styling for Formations list */
    .details-box {
      background: #f9fafb;
      border-radius: 16px;
      padding: 24px;
      border: 1px solid #f3f4f6;
      margin-top: auto;
    }

    .details-box h4 {
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 14px;
      color: #111827;
    }

    /* ====================================================
       BLOG STYLING
    ==================================================== */
    .ccm-block-page-list-wrapper {
      padding: 0;
    }
    
    .ccm-block-page-list-header h2 {
      font-size: 1.8rem;
      font-weight: 800;
      color: #111827;
      margin-bottom: 30px;
      letter-spacing: -0.5px;
    }

    /* Individual Blog Entry Cards */
    .ccm-block-page-list-pages {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .ccm-block-page-list-page-entry {
      background: #ffffff;
      border: 1px solid #eef0f3;
      border-radius: 20px;
      padding: 28px;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    }

    .ccm-block-page-list-page-entry:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(245, 144, 46, 0.08);
      border-color: rgba(245, 144, 46, 0.2);
    }

    .ccm-block-page-list-page-entry-title {
      font-size: 1.3rem;
      font-weight: 800;
      margin: 0 0 10px;
      line-height: 1.3;
    }

    .ccm-block-page-list-page-entry-title a {
      color: #111827;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .ccm-block-page-list-page-entry-title a:hover {
      color: var(--c-orange);
    }

    .ccm-block-page-list-page-entry-description {
      font-size: 0.94rem;
      line-height: 1.65;
      color: #4b5563;
      margin-bottom: 0;
    }

    /* Topic List & Archives Styles */
    .ccm-block-topic-list-header h4,
    .ccm-block-date-navigation-header h4 {
      font-size: 1.1rem;
      font-weight: 800;
      color: #111827;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-left: 3px solid var(--c-orange);
      padding-left: 10px;
      margin-top: 0;
    }

    .ccm-block-topic-list-list,
    .ccm-block-date-navigation ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 25px;
    }

    .ccm-block-topic-list-list li,
    .ccm-block-date-navigation ul li {
      margin-bottom: 10px;
    }

    .ccm-block-topic-list-list li a,
    .ccm-block-date-navigation ul li a {
      color: #4b5563;
      font-weight: 600;
      font-size: 0.92rem;
      text-decoration: none;
      transition: all 0.2s ease;
      display: inline-block;
    }

    .ccm-block-topic-list-list li a:hover,
    .ccm-block-date-navigation ul li a:hover {
      color: var(--c-orange);
      transform: translateX(4px);
    }

    /* Google Translate Styling & Hiding */
    body {
      top: 0 !important;
    }
    .goog-te-banner-frame.skiptranslate, .goog-te-banner-frame, .goog-te-banner {
      display: none !important;
    }
    .goog-te-balloon-frame {
      display: none !important;
    }
    .goog-te-gadget {
      display: none !important;
    }
    #goog-gt-tt, .goog-tooltip, .goog-tooltip:hover {
      display: none !important;
    }
    .goog-text-highlight {
      background-color: transparent !important;
      border: none !important;
      box-shadow: none !important;
    }
    iframe.skiptranslate {
      display: none !important;
    }