/* Limiteur de contenu */
.guide-content-limiter {
    width: 70%;
    max-width: 900px;
    margin: 0 auto;
}

/* En-tête */
.guide-header {
    margin-bottom: 15px;
}

.guide-back-icon {
    width: 40px;
    height: 40px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 1.2rem;
    margin-bottom: 20px;
    cursor: pointer;
}

.guide-title {
    font-size: 1.4rem;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Image hero */
.guide-hero-image {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.guide-hero-illustration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Cercle et personnes */
.guide-people-circle {
    width: 400px;
    height: 400px;
    position: relative;
}

.guide-person {
    position: absolute;
    width: 60px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guide-person-head {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.guide-person-body {
    width: 35px;
    height: 50px;
    border-radius: 8px 8px 12px 12px;
}

.guide-person-legs {
    width: 40px;
    height: 30px;
    display: flex;
    gap: 5px;
    margin-top: 2px;
}

.guide-leg {
    width: 17px;
    height: 30px;
    border-radius: 0 0 8px 8px;
}

.guide-heart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    animation: guide-heartbeat 1.5s ease-in-out infinite;
}

@keyframes guide-heartbeat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Texte */
.guide-intro-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Sections étapes */
.guide-step-section {
    margin-bottom: 40px;
}

.guide-step-title {
    font-size: 1.3rem;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 15px;
}

.guide-step-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.guide-step-list {
    list-style: none;
    padding-left: 0;
}

.guide-step-list li {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.guide-step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 40px 20px;
    }

    .guide-title {
        font-size: 1.7rem;
    }

    .guide-hero-image {
        height: 250px;
    }

    .guide-people-circle {
        width: 300px;
        height: 300px;
    }

    .guide-heart-center {
        font-size: 60px;
    }
}
