/* 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;
}

/* Section Qu'est-ce que la conduite accompagnée */
.what-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.what-subtitle {
    font-size: 1.2em;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    opacity: 0.95;
}

.what-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.what-text {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    border: 4px solid #333;
    padding: 40px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.what-text h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.what-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.05em;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    padding: 8px 0;
    color: #333;
    font-weight: 600;
    font-size: 1.05em;
}

.what-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 4px solid #333;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

.stat-number {
    display: block;
    font-family: 'Bangers', cursive;
    font-size: 3em;
    text-shadow: 2px 2px 0 #333;
    margin-bottom: 10px;
}

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

/* Section Étapes de la formation */
.steps-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #fff 0%, #f1f2f6 100%);
    transform: translateX(-50%);
    border: 2px solid #333;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

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

.step-marker {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bangers', cursive;
    font-size: 2em;
    border: 4px solid #333;
    z-index: 2;
    position: relative;
    text-shadow: 1px 1px 0 #fff;
    font-weight: bold;
}

.step-content {
    background: #fff;
    border-radius: 15px;
    border: 3px solid #333;
    padding: 30px;
    margin: 0 30px;
    flex: 1;
    box-shadow: 
        4px 4px 0 #333,
        8px 8px 0 rgba(0,0,0,0.1);
    position: relative;
}

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

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.05em;
    margin-bottom: 15px;
}

.step-age {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    border: 2px solid #333;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    display: inline-block;
}

/* Section Tarifs */
.pricing-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.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: 1000px;
    margin: 0 auto;
}

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

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

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

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

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

.card-header {
    padding: 30px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    position: relative;
    text-align: center;
    border-bottom: 4px solid #333;
}

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

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

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

.card-content {
    padding: 30px;
}

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

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

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

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

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

.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: #fff;
  font-size: 1.1em;
  margin: 0;
  font-weight: 600;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.pricing-link {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
  opacity: 0.9;
}

.pricing-link:hover {
  opacity: 1;
}

/* Section Conditions */
.conditions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #00cec9 0%, #00b894 100%);
    position: relative;
    overflow: hidden;
}

.conditions-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 10%, transparent 70%);
    opacity: 0.8;
    pointer-events: none;
}

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

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

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

.condition-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    border: 4px solid #333;
    padding: 30px;
    text-align: center;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.condition-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        8px 8px 0 #ffdd57,
        14px 14px 0 rgba(0,0,0,0.2);
}

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

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

.condition-card ul {
    list-style: none;
    text-align: left;
}

.condition-card li {
    padding: 8px 0;
    color: #666;
    font-size: 1em;
    line-height: 1.4;
}

/* Section Rendez-vous pédagogiques */
.rdv-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.rdv-subtitle {
    font-size: 1.2em;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    opacity: 0.95;
}

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

.rdv-card {
    background: #fff;
    border-radius: 20px;
    border: 4px solid #333;
    padding: 30px;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

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

.rdv-number {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Bangers', cursive;
    font-size: 1.3em;
    text-shadow: 2px 2px 0 #333;
    border: 3px solid #333;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.rdv-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    margin-bottom: 20px;
}

.rdv-details p {
    margin: 5px 0;
    color: #666;
    font-size: 0.95em;
}

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

.rdv-content ul {
    list-style: none;
}

.rdv-content li {
    padding: 5px 0;
    color: #666;
    font-size: 0.95em;
}

/* Section Avantages */
.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.advantage-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    border: 4px solid #333;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
    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: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0 #ffdd57,
        14px 14px 0 rgba(0,0,0,0.2);
}

.advantage-card:nth-child(1),
.advantage-card:nth-child(4) {
    border-color: #74b9ff;
}

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

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

.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.6;
    font-size: 0.95em;
}

/* Section conseils */
.tips-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    position: relative;
    overflow: hidden;
}

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

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

.tips-card {
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 40px;
    border-radius: 20px;
    border: 4px solid #333;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
}

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

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

.tip-item {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    border: 3px solid #333;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    box-shadow: 
        4px 4px 0 #333,
        8px 8px 0 rgba(0,0,0,0.1);
}

.tip-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
}

.tip-item h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.3em;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.tip-item p {
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

/* Boutons Comic */
.btn-comic {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Bangers', cursive;
    font-size: 1.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    border: 3px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        4px 4px 0 #333,
        8px 8px 0 rgba(0,0,0,0.15);
}

.btn-comic.primary {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: #fff;
    text-shadow: 2px 2px 0 #333;
}

.btn-comic:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.2);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .what-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rdv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .what-section,
    .steps-section,
    .pricing-section,
    .conditions-section,
    .rdv-section,
    .advantages-section,
    .tips-section {
        padding: 60px 0;
    }
    
    .what-title,
    .steps-title,
    .pricing-title,
    .conditions-title,
    .rdv-title,
    .advantages-title {
        font-size: 2.2em;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-timeline::before {
        left: 40px;
    }
    
    .step-item {
        flex-direction: row !important;
        padding-left: 100px;
    }
    
    .step-marker {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .step-content {
        margin: 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .what-title,
    .steps-title,
    .pricing-title,
    .conditions-title,
    .rdv-title,
    .advantages-title {
        font-size: 1.8em;
    }
    
    .advantage-icon {
        font-size: 3.5em;
    }
    
    .advantage-name {
        font-size: 1.4em;
    }
    
    .tips-card h3 {
        font-size: 1.8em;
    }
    
    .tip-item h4 {
        font-size: 1.2em;
    }
}

        .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;
        }