/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.manual-hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    position: relative;
    overflow: hidden;
}

.manual-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 60px 60px;
    animation: sparkle 10s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.manual-hero .container {
    position: relative;
    z-index: 2;
}

.manual-title {
    font-family: 'Bangers', cursive;
    font-size: 3em;
    color: #fff;
    text-shadow: 4px 4px 0 #333;
    text-align: center;
    margin-bottom: 15px;
}

.manual-subtitle {
    color: #fff;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 #333;
}
/* Section CPF Améliorée */
.cpf-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.cpf-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cpf-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.4)"/><circle cx="70" cy="70" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 200px 200px;
    animation: float-particles 20s linear infinite;
    opacity: 0.6;
}

@keyframes float-particles {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.cpf-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cpf-logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.cpf-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.cpf-text {
    color: #fff;
}

.cpf-text h2 {
    font-family: 'Bangers', cursive;
    font-size: 3em;
    color: #fff;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cpf-text p {
    font-size: 1.3em;
    line-height: 1.7;
    margin-bottom: 30px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    opacity: 0.95;
}

.cpf-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.cpf-benefit {
    background: rgba(33, 66, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cpf-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cpf-benefit:hover::before {
    left: 100%;
}

.cpf-benefit:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.cpf-benefit-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    display: block;
}

.cpf-benefit h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.3em;
    margin-bottom: 8px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.cpf-benefit p {
    font-size: 0.95em;
    margin: 0;
    opacity: 0.9;
}

.btn-cpf {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    padding: 18px 40px;
    font-size: 1.4em;
    border-radius: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    text-shadow: none;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.btn-cpf::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.3s ease;
}

.btn-cpf:hover::before {
    left: 100%;
}

.btn-cpf:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.5);
}

.cpf-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.cpf-stat {
    text-align: center;
}

.cpf-stat-number {
    font-family: 'Bangers', cursive;
    font-size: 2.5em;
    color: #ffd93d;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
    display: block;
    line-height: 1;
}

.cpf-stat-label {
    font-size: 1.1em;
    opacity: 0.9;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .cpf-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .cpf-logo {
        justify-self: center;
        width: 150px;
    }
    
    .cpf-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cpf-section {
        padding: 80px 0;
    }
    
    .cpf-text h2 {
        font-size: 2.5em;
    }
    
    .cpf-text p {
        font-size: 1.1em;
    }
    
    .cpf-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cpf-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-cpf {
        padding: 15px 35px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .cpf-text h2 {
        font-size: 2em;
    }
    
    .cpf-logo {
        width: 120px;
    }
    
    .cpf-stat-number {
        font-size: 2em;
    }
}
/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    background: 
        linear-gradient(45deg, 
            #ff6b6b 0%, 
            #4ecdc4 25%, 
            #ffd93d 50%, 
            #a8e6cf 75%, 
            #ff6b6b 100%
        );
    background-size: 400% 400%;
    animation: gentleFlow 10s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 61, 0.05) 0%, transparent 70%);
    animation: gentleFloat 12s ease-in-out infinite;
}

.advantages-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="rgba(78,205,196,0.3)"/><circle cx="80" cy="40" r="2" fill="rgba(116,185,255,0.4)"/><circle cx="50" cy="70" r="4" fill="rgba(78,205,196,0.2)"/></svg>') repeat;
    background-size: 300px 300px, 250px 250px, 120px 120px;
    animation: gentlePatterns 15s linear infinite;
}

.advantages-section .container {
    position: relative;
    z-index: 2;
}

.advantages-title {
    font-family: 'Bangers', cursive;
    font-size: 2.8em;
    color: #333;
    text-shadow: 3px 3px 0 #fff;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.advantages-subtitle {
    font-size: 1.2em;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: #fff;
    border-radius: 20px;
    border: 4px solid #333;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.advantage-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.advantage-card:nth-child(1) {
    border-color: #3498db;
}

.advantage-card:nth-child(2) {
    border-color: #e74c3c;
}

.advantage-card:nth-child(3) {
    border-color: #f39c12;
}

.advantage-card:nth-child(4) {
    border-color: #2ecc71;
}

.advantage-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
}

.advantage-name {
    font-family: 'Bangers', cursive;
    font-size: 1.6em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.advantage-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95em;
}

/* Responsive pour advantages section */
@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .advantages-section {
        padding: 80px 0;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .advantages-title {
        font-size: 2.4em;
    }
    
    .advantage-card {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .advantages-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    
    .advantages-subtitle {
        font-size: 1.1em;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .advantage-card {
        min-height: 220px;
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .advantage-icon {
        font-size: 3.5em;
        margin-bottom: 15px;
    }
    
    .advantage-name {
        font-size: 1.4em;
        margin-bottom: 12px;
    }
    
    .advantage-description {
        font-size: 0.9em;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .advantages-section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .advantages-title {
        font-size: 1.8em;
    }
    
    .advantages-subtitle {
        font-size: 1em;
        margin-bottom: 35px;
    }
    
    .advantage-card {
        min-height: 200px;
        padding: 18px 12px;
        margin: 0 5px;
    }
    
    .advantage-icon {
        font-size: 3em;
        margin-bottom: 12px;
    }
    
    .advantage-name {
        font-size: 1.3em;
        margin-bottom: 10px;
    }
    
    .advantage-description {
        font-size: 0.85em;
    }
}
/* Skills Section */
.skills-section {
    padding: 100px 0;
    background: 
        linear-gradient(45deg, 
            #a8e6cf 0%, 
            #dcedc1 25%, 
            #ffd3a5 50%, 
            #fd9853 75%, 
            #a8e6cf 100%
        );
    background-size: 400% 400%;
    animation: gentleFlow 12s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(168, 230, 207, 0.05) 0%, transparent 70%);
    animation: gentleFloat 10s ease-in-out infinite;
}

.skills-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,20 80,80 20,80" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 300px 300px, 250px 250px, 80px 80px;
    animation: gentlePatterns 20s linear infinite;
}

.skills-section .container {
    position: relative;
    z-index: 2;
}

.skills-title {
    font-family: 'Bangers', cursive;
    font-size: 2.8em;
    color: #333;
    text-shadow: 3px 3px 0 #fff;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-card {
    background: #fff;
    border-radius: 20px;
    border: 4px solid #333;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.skill-number {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bangers', cursive;
    font-size: 1.5em;
    margin: 0 auto 20px;
    border: 3px solid #333;
    text-shadow: 2px 2px 0 #333;
}

.skill-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.skill-card p {
    color: #666;
    line-height: 1.6;
}

/* Formation Section */
.formation-section {
    padding: 100px 0;
    background: 
        linear-gradient(45deg, 
            #74b9ff 0%, 
            #0984e3 25%, 
            #a29bfe 50%, 
            #6c5ce7 75%, 
            #74b9ff 100%
        );
    background-size: 400% 400%;
    animation: gentleFlow 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.formation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(116, 185, 255, 0.1) 0%, transparent 60%);
    animation: gentleFloat 8s ease-in-out infinite;
}

.formation-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 50 Q 30 30, 50 50 Q 70 70, 90 50" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>') repeat;
    background-size: 90px 90px, 140px 140px;
    animation: floatingElements 18s linear infinite;
    opacity: 0.7;
}

.formation-section .container {
    position: relative;
    z-index: 2;
}

.formation-title {
    color: #333;
    text-shadow: 2px 2px 0 #fff;
    font-family: 'Bangers', cursive;
    font-size: 2.8em;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.formation-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.formation-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    border: 4px solid #333;
    z-index: 2;
    position: relative;
}

.timeline-content {
    background: #fff;
    border-radius: 15px;
    border: 3px solid #333;
    padding: 25px;
    margin: 0 30px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.6em;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Tips Section */
.tips-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tips-card {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 4px solid #333;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.tips-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 2em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 #333;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-item {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #333;
    text-shadow: 1px 1px 0 #333;
}

/* Pricing Section - Style identique à services-comic de l'accueil */
.pricing-section {
    padding: 100px 0;
    background: 
        linear-gradient(45deg, 
            #ff9999 0%, 
            #66d9d4 25%, 
            #ffeb99 50%, 
            #99c7ff 75%, 
            #ff9999 100%
        );
    background-size: 400% 400%;
    animation: comicGradientMove 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Trames de points Ben Day style */
        radial-gradient(circle at 25% 25%, #333 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #333 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 50%, #333 1px, transparent 1px),
        /* Lignes diagonales */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            rgba(51, 51, 51, 0.1) 8px,
            rgba(51, 51, 51, 0.1) 10px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 12px,
            rgba(51, 51, 51, 0.05) 12px,
            rgba(51, 51, 51, 0.05) 14px
        ),
        /* Trames en croix */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(51, 51, 51, 0.08) 20px,
            rgba(51, 51, 51, 0.08) 22px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(51, 51, 51, 0.08) 20px,
            rgba(51, 51, 51, 0.08) 22px
        );
    background-size: 
        40px 40px,
        60px 60px,
        20px 20px,
        30px 30px,
        35px 35px,
        80px 80px,
        80px 80px;
    opacity: 0.2;
    animation: comicPatternMove 15s linear infinite;
}

.pricing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Dégradés en losanges */
        conic-gradient(from 45deg at 20% 30%, 
            transparent 0deg, 
            rgba(255, 255, 255, 0.06) 90deg, 
            transparent 180deg, 
            rgba(255, 255, 255, 0.03) 270deg, 
            transparent 360deg
        ),
        conic-gradient(from 135deg at 80% 70%, 
            transparent 0deg, 
            rgba(51, 51, 51, 0.06) 90deg, 
            transparent 180deg, 
            rgba(51, 51, 51, 0.03) 270deg, 
            transparent 360deg
        ),
        /* Dégradés radiaux pour effet comics */
        radial-gradient(ellipse at 10% 20%, 
            rgba(255, 153, 153, 0.12) 0%, 
            transparent 60%
        ),
        radial-gradient(ellipse at 90% 80%, 
            rgba(102, 217, 212, 0.12) 0%, 
            transparent 60%
        ),
        radial-gradient(ellipse at 60% 40%, 
            rgba(255, 235, 153, 0.08) 0%, 
            transparent 50%
        );
    background-size: 
        200px 200px,
        180px 180px,
        300px 300px,
        250px 250px,
        150px 150px;
    opacity: 0.25;
    animation: comicOverlayMove 12s ease-in-out infinite reverse;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    border: 4px solid #333;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.service-card.featured {
    border-color: #ff6b6b;
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.card-header {
    padding: 30px;
    background: linear-gradient(135deg, #99c7ff, #66a3ff);
    position: relative;
    text-align: center;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 3px solid #333;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 2.5em;
    color: #333;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffeb99;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Bangers', cursive;
    font-size: 1.1em;
    border: 2px solid #333;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.card-content p {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 8px 0;
    color: #333;
    font-weight: 500;
}

.card-content .btn-comic {
    width: 100%;
    text-align: center;
    display: block;
}

.pricing-title {
    font-family: 'Bangers', cursive;
    font-size: 3.5em;
    color: #333;
    text-shadow: 3px 3px 0 #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

.pricing-subtitle {
    color: #fff;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 60px;
    text-shadow: 2px 2px 0 #333;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 25px;
    border: 4px solid #333;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

.pricing-card:nth-child(2) {
    animation-delay: -2s;
}

.pricing-card:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.pricing-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.pricing-card.featured {
    border-color: #ffd93d;
    transform: scale(1.05);
}

.featured-badge {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    text-align: center;
    padding: 10px;
    font-family: 'Bangers', cursive;
    font-size: 1.2em;
    text-shadow: 1px 1px 0 #fff;
    border-bottom: 3px solid #333;
}

.pricing-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid #333;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    text-shadow: 1px 1px 0 #fff;
}

.pricing-header h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 #333;
}

.pricing-card.featured .pricing-header h3 {
    text-shadow: 2px 2px 0 #fff;
}

.price {
    font-family: 'Bangers', cursive;
    font-size: 3em;
    text-shadow: 3px 3px 0 #333;
}

.pricing-card.featured .price {
    text-shadow: 3px 3px 0 #fff;
}

.pricing-features {
    padding: 30px;
}

.feature {
    padding: 12px 0;
    border-bottom: 2px dashed #eee;
    font-size: 1.1em;
    color: #333;
}

.feature:last-child {
    border-bottom: none;
}

.pricing-cta {
    padding: 30px;
    text-align: center;
    border-top: 3px solid #eee;
}

.btn-pricing {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Bangers', cursive;
    font-size: 1.4em;
    text-shadow: 2px 2px 0 #333;
    border: 3px solid #333;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-pricing.featured {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    text-shadow: 2px 2px 0 #fff;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
}

.pricing-note p {
  color: #666;
  font-size: 1.1em;
  margin: 0;
  font-weight: 600;
}

.pricing-link {
  color: #3498db;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.pricing-link:hover {
  color: #2980b9;
}

/* Services Section (identique à index.css) */
.services-comic, .pricing-section {
  padding: 100px 0;
}

.services-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  border: 4px solid #333;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.service-card.featured {
  border-color: #ff6b6b;
  transform: scale(1.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.card-header {
  padding: 30px;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  position: relative;
  text-align: center;
}

.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid #333;
  background: #fff;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section Headers identiques à l'accueil */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.comic-title {
    font-family: 'Bangers', cursive;
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 
        4px 4px 0px #000,
        -1px -1px 0px #000,
        1px -1px 0px #000,
        -1px 1px 0px #000,
        1px 1px 0px #000;
    margin-bottom: 20px;
    transform: perspective(500px) rotateX(15deg);
    text-align: center;
}
.pricing-note {
    text-align: center;
    margin-top: 40px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-note p {
  color: #fff;
  font-size: 1.1em;
  margin: 0;
  font-weight: 600;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
  line-height: 1.6;
}
.comic-subtitle {
    font-size: 1.3em;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    padding: 12px 25px;
    border-radius: 25px;
    border: 3px solid #333;
    font-family: 'Bangers', cursive;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comic-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.comic-subtitle:hover::before {
    left: 100%;
}

.comic-subtitle:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 18px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.6);
}

/* Programme de Formation REMC Section */
.formation-program-section {
    padding: 100px 0;
    background: 
        linear-gradient(45deg, 
            #fd79a8 0%, 
            #fdcb6e 25%, 
            #e17055 50%, 
            #74b9ff 75%, 
            #fd79a8 100%
        );
    background-size: 400% 400%;
    animation: gentleFlow 12s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.formation-program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 80%, rgba(253, 121, 168, 0.08) 0%, transparent 60%);
    animation: gentleFloat 12s ease-in-out infinite;
}

.formation-program-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="20,40 80,40 50,80" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    background-size: 110px 110px, 160px 160px;
    animation: teamFloat 22s linear infinite;
    opacity: 0.6;
}

.formation-program-section .container {
    position: relative;
    z-index: 2;
}

.formation-program-title {
    color: #333;
    text-shadow: 3px 3px 0 rgba(255,255,255,0.8);
    font-family: 'Bangers', cursive;
    font-size: 2.8em;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.formation-program-subtitle {
    font-size: 1.2em;
    color: #666;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.6);
    text-align: center;
    margin-bottom: 40px;
}

.formation-program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.program-column {
    background: #fff;
    border-radius: 15px;
    border: 3px solid #333;
    padding: 20px;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.program-column:hover {
    transform: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0 #ffdd57,
        14px 14px 0 rgba(0,0,0,0.2);
}

.program-column h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.6em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.program-column p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1em;
}

.program-column ul {
    list-style: none;
    padding-left: 0;
}

.program-column ul li {
    margin-bottom: 10px;
    color: #333;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Formation modalities button */
.formation-modalities-button {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modalities-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-size: 1.3em;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: #fff;
    border: 4px solid #333;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Bangers', cursive;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #333;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
    font-weight: 700;
    letter-spacing: 1px;
}

.modalities-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.modalities-btn:hover::before {
    left: 100%;
}

.modalities-btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0 #ffdd57,
        14px 14px 0 rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
}

.modalities-btn:active {
    transform: translate(-2px, -2px);
    box-shadow: 
        4px 4px 0 #333,
        8px 8px 0 rgba(0,0,0,0.15);
}

/* Animations communes */
@keyframes gentleFlow {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-20px) scale(1.05); 
        opacity: 0.6; 
    }
}

@keyframes gentlePatterns {
    0% { 
        transform: translateX(0) translateY(0); 
    }
    25% { 
        transform: translateX(50px) translateY(-30px); 
    }
    50% { 
        transform: translateX(100px) translateY(0); 
    }
    75% { 
        transform: translateX(50px) translateY(30px); 
    }
    100% { 
        transform: translateX(0) translateY(0); 
    }
}

@keyframes floatingElements {
    0% { 
        transform: translateX(0) translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateX(30px) translateY(-20px) rotate(90deg); 
    }
    50% { 
        transform: translateX(60px) translateY(0) rotate(180deg); 
    }
    75% { 
        transform: translateX(30px) translateY(20px) rotate(270deg); 
    }
    100% { 
        transform: translateX(0) translateY(0) rotate(360deg); 
    }
}

@keyframes teamFloat {
    0% { 
        transform: translateX(0) translateY(0); 
    }
    25% { 
        transform: translateX(20px) translateY(-15px); 
    }
    50% { 
        transform: translateX(40px) translateY(0); 
    }
    75% { 
        transform: translateX(20px) translateY(15px); 
    }
    100% { 
        transform: translateX(0) translateY(0); 
    }
}

/* Responsive pour le programme de formation */
@media (max-width: 1024px) {
    .formation-program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .formation-program-grid {
        grid-template-columns: 1fr;
    }
    
    .formation-program-title {
        font-size: 2.2em;
    }
}

/* Ombres "comic" pro pour les sections et cartes */
.advantage-card,
.skill-card,
.program-column,
.service-card,
.pricing-card,
.cpf-benefit {
    box-shadow: 
        6px 6px 0 #333, /* contour noir épais style BD */
        12px 12px 0 rgba(0,0,0,0.15); /* ombre douce en plus */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.advantage-card:hover,
.skill-card:hover,
.program-column:hover,
.service-card:hover,
.pricing-card:hover,
.cpf-benefit:hover {
    transform: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0 #ffdd57, /* ombre colorée pour effet punchy */
        14px 14px 0 rgba(0,0,0,0.2);
}

/* Titres style comics renforcé */
.advantages-title,
.skills-title,
.formation-title,
.pricing-title,
.formation-program-title {
    text-shadow:
        3px 3px 0 #fff,
        6px 6px 0 #333;
}

/* Effet bulle sur les boutons */
.btn-comic {
    box-shadow: 
        4px 4px 0 #333;
}
.btn-comic:hover {
    box-shadow: 
        4px 4px 0 #ffdd57;
}

/* Animations pour les trames comics */
@keyframes comicGradientMove {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

@keyframes comicPatternMove {
    0% { 
        transform: translateX(0) translateY(0); 
    }
    25% { 
        transform: translateX(10px) translateY(-10px); 
    }
    50% { 
        transform: translateX(20px) translateY(0); 
    }
    75% { 
        transform: translateX(10px) translateY(10px); 
    }
    100% { 
        transform: translateX(0) translateY(0); 
    }
}

@keyframes comicOverlayMove {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.25; 
    }
    33% { 
        transform: scale(1.05) rotate(1deg); 
        opacity: 0.2; 
    }
    66% { 
        transform: scale(0.98) rotate(-1deg); 
        opacity: 0.3; 
    }
}

/* Ajuster les couleurs de texte pour les sections colorées */
.advantages-section .advantages-title,
.skills-section .skills-title,
.formation-section .formation-title,
.formation-program-section .formation-program-title {
    color: #333;
    text-shadow: 3px 3px 0 rgba(255,255,255,0.8);
}

.advantages-section .advantages-subtitle,
.formation-program-section .formation-program-subtitle {
    color: #666;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.6);
}

/* Ombres "comic" pro pour les sections et cartes */
.advantage-card,
.skill-card,
.program-column,
.service-card,
.pricing-card,
.cpf-benefit {
    box-shadow: 
        6px 6px 0 #333, /* contour noir épais style BD */
        12px 12px 0 rgba(0,0,0,0.15); /* ombre douce en plus */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.advantage-card:hover,
.skill-card:hover,
.program-column:hover,
.service-card:hover,
.pricing-card:hover,
.cpf-benefit:hover {
    transform: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0 #ffdd57, /* ombre colorée pour effet punchy */
        14px 14px 0 rgba(0,0,0,0.2);
}

/* Titres style comics renforcé */
.advantages-title,
.skills-title,
.formation-title,
.pricing-title,
.formation-program-title {
    text-shadow:
        3px 3px 0 #fff,
        6px 6px 0 #333;
}

/* Effet bulle sur les boutons */
.btn-comic {
    box-shadow: 
        4px 4px 0 #333;
}
.btn-comic:hover {
    box-shadow: 
        4px 4px 0 #ffdd57;
}

/* Animations pour les trames comics */
@keyframes comicGradientMove {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

@keyframes comicPatternMove {
    0% { 
        transform: translateX(0) translateY(0); 
    }
    25% { 
        transform: translateX(10px) translateY(-10px); 
    }
    50% { 
        transform: translateX(20px) translateY(0); 
    }
    75% { 
        transform: translateX(10px) translateY(10px); 
    }
    100% { 
        transform: translateX(0) translateY(0); 
    }
}

@keyframes comicOverlayMove {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.25; 
    }
    33% { 
        transform: scale(1.05) rotate(1deg); 
        opacity: 0.2; 
    }
    66% { 
        transform: scale(0.98) rotate(-1deg); 
        opacity: 0.3; 
    }
}

/* Ajuster les couleurs de texte pour les sections sombres */
.advantages-section .advantages-title,
.skills-section .skills-title,
.formation-section .formation-title,
.formation-program-section .formation-program-title {
    color: #fff;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.8);
}

.advantages-section .advantages-subtitle,
.formation-program-section .formation-program-subtitle {
    color: #bdc3c7;
}

.timeline-content h3,
.timeline-content p {
    color: #333;
}

.program-column p {
    color: #555;
}

/* WhatsApp Button */
.whatsapp-chat {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  /* Ajout de l'image de nuage en arrière-plan */
  background-image: url('../img/tl.webp');
  background-size: 120px 120px;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  transform: scaleX(-1);
}

.whatsapp-chat a {
  display: block;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1001;
}

.whatsapp-chat img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: 400% 400%;
  position: relative;
  overflow: hidden;
}


@keyframes float {
  0%, 100% { transform: translateY(-50%) scaleX(-1) translateY(0px); }
  50% { transform: translateY(-50%) scaleX(-1) translateY(-10px); }
}



/* WhatsApp Button */
.whatsapp-chat {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  /* Ajout de l'image de nuage en arrière-plan */
  background-image: url('../img/tl.webp');
  background-size: 120px 120px;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  transform: scaleX(-1);
}

.whatsapp-chat a {
  display: block;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1001;
}

.whatsapp-chat img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: 400% 400%;
  position: relative;
  overflow: hidden;
}


@keyframes float {
  0%, 100% { transform: translateY(-50%) scaleX(-1) translateY(0px); }
  50% { transform: translateY(-50%) scaleX(-1) translateY(-10px); }
}