/* Styles spécifiques à la page Pôle Emploi */
:root {
    --yellow-gradient: linear-gradient(90deg, #FFD700, #FFA500);
    --dark-blue: #1a237e;
}

.requirements ul {
    list-style-type: none;
}

.requirements li {
    position: relative;
    padding-left: 2rem;
}

.requirements li::before {
    content: "✦";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.steps ol {
    counter-reset: step-counter;
    list-style: none;
}

.steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.steps li::before {
    content: counter(step-counter);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.steps li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 16px;
    top: 40px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--primary-color-light) 50%, transparent);
}

/* Animation au survol des sections */
.info-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 