<div class= »vademecum-container »>
<style>
/* CSS INCLUS – Styles adaptés à la structure WordPress */
.vademecum-container * {
margin: 0;
padding: 0;
box-sizing: border-box;
}

.vademecum-container {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: #f0f2f5;
padding: 0;
max-width: 1200px;
margin: 0 auto;
overflow: hidden;
border-radius: 0;
box-shadow: none;
}

.vademecum-header {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
padding: 60px 40px;
text-align: center;
position: relative;
overflow: hidden;
}

.vademecum-header::before {
content:  »;
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
animation: pulse 15s infinite;
}

@keyframes pulse {
0%, 100% { transform: scale(1) rotate(0deg); }
50% { transform: scale(1.1) rotate(180deg); }
}

.vademecum-header h1 {
font-size: 2.5em;
margin-bottom: 15px;
position: relative;
z-index: 1;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.vademecum-subtitle {
font-size: 1.2em;
opacity: 0.95;
position: relative;
z-index: 1;
margin-bottom: 10px;
}

.vademecum-metadata {
font-size: 0.9em;
opacity: 0.8;
margin-top: 15px;
position: relative;
z-index: 1;
}

.vademecum-content {
padding: 40px;
}

.vademecum-section {
margin-bottom: 30px;
}

.vademecum-content h2 {
color: #1e3c72;
font-size: 2em;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 3px solid #667eea;
display: inline-block;
}

.vademecum-accordion {
margin: 20px 0;
}

.accordion-item {
background: #f8f9fa;
margin-bottom: 15px;
border-radius: 12px;
overflow: hidden;
border: 2px solid #e9ecef;
transition: all 0.3s ease;
}

.accordion-item:hover {
border-color: #667eea;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-header {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
padding: 20px 25px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
border-left: 5px solid #667eea;
}

.accordion-header:hover {
background: linear-gradient(135deg, #e9ecef 0%, #b8c4db 100%);
}

.accordion-header h3 {
color: #1e3c72;
font-size: 1.3em;
margin: 0;
flex-grow: 1;
}

/* Style spécifique pour les questions/constats */
.accordion-header.constat-header h3 {
color: #764ba2;
}
.accordion-item.constat-item .accordion-header {
border-left: 5px solid #764ba2;
}
.accordion-item.constat-item .accordion-icon {
color: #764ba2;
}

.accordion-icon {
font-size: 1.5em;
color: #667eea;
transition: transform 0.3s ease;
font-weight: bold;
}

.accordion-item.active .accordion-icon {
transform: rotate(180deg);
}

.accordion-content {
max-height: