.stepper-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stepper-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.stepper-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F48148;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.stepper-content {
    flex-grow: 1;
}

.stepper-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #F48148;
}

.stepper-description {
    color: var(--bs-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Ligne verticale connectant les étapes */
.stepper-item:not(:last-child) {
    padding-bottom: 1rem;
}

/* Animation au survol */
.stepper-item:hover .stepper-number {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stepper-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .stepper-title {
        font-size: 1.1rem;
    }
    
    .stepper-description {
        font-size: 0.9rem;
    }
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    border: 2px solid #333;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #333;
    color: white;
}
